cherryext/orun/extjs/static/extjs-upload-widget/lib/upload/header/AbstractFilenameEncoder.js

16 lines
241 B
JavaScript
Raw Normal View History

2018-08-15 11:12:01 +03:00
/**
* Abstract filename encoder.
*/
Ext.define('Ext.ux.upload.header.AbstractFilenameEncoder', {
config : {},
type : 'generic',
encode : function(filename) {},
getType : function() {
return this.type;
}
});