Your IP : 216.73.216.220


Current Path : /proc/thread-self/cwd/static/adminhtml/Magento/backend/it_IT/Amasty_ImportCore/js/
Upload File :
Current File : //proc/thread-self/cwd/static/adminhtml/Magento/backend/it_IT/Amasty_ImportCore/js/file-uploader.js

define([
    'Magento_Ui/js/form/element/file-uploader',
], function (FileUploader) {

    return FileUploader.extend({
        initialize: function () {
            this._super();
            this.inputName = 'file';
            this.maxFileSize = 2000000;

            return this;
        },

        onFilesChoosed: function (e, data) {
            if (this.allowedExtensions === undefined || this.allowedExtensions === false) {
                this.allowedExtensions = ' '; // Invalidate file type
            }

            this._super(e, data);
        }
    });
});