Your IP : 216.73.216.158


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/provider.js

define([
    'jquery',
    'Magento_Ui/js/form/provider'
], function ($, Provider) {
    'use strict';

    return Provider.extend({
        defaults: {
            pageMessageSelector: '#messages'
        },

        save: function (options) {
            var data = this.get('data');

            $(this.pageMessageSelector).html('');
            this.client.save({ encodedData: JSON.stringify(data) }, options);

            return this;
        }
    });
});