Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/pub/static/adminhtml/Magento/backend/en_GB/Amasty_ImportCore/js/
Upload File :
Current File : //home/rtorresani/www/pub/static/adminhtml/Magento/backend/en_GB/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;
        }
    });
});