Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
plugins
/
yith-woocommerce-compare
/
plugin-fw
/
assets
/
js
/
Editing: yith-update-plugins.js
/** * This file belongs to the YIT Framework. * * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://www.gnu.org/licenses/gpl-3.0.txt */ (function ( $ ) { $(document).on( 'click', 'a.yith-update-link', function(event){ var t = $(this), p_wrapper = t.parent('p'); event.preventDefault(); $.ajax({ type: 'POST', url: yith_plugin_fw.ajaxurl, data: { 'action': "update-plugin", 'plugin': t.data('plugin'), 'slug': t.data('slug'), 'name': t.data('name'), '_ajax_nonce': yith_plugin_fw.ajax_nonce }, beforeSend: function(){ p_wrapper.text( yith_plugin_fw.l10n.updating.replace( '%s', t.data('name') ) ); p_wrapper.addClass( 'yith-updating' ); }, success: function (response) { p_wrapper.removeClass( 'yith-updating' ).addClass( 'yith-updated' ); var notice_wrapper = p_wrapper.parent('div'); notice_wrapper.removeClass( 'notice-warning' ), result_text = ''; if( response.success === true ){ notice_wrapper.addClass('notice-success updated-message').removeClass( 'update-message' ); result_text = yith_plugin_fw.l10n.updated; } else { notice_wrapper.addClass('notice-error'); result_text = yith_plugin_fw.l10n.failed; } p_wrapper.text( result_text.replace( '%s', t.data('name') ) ); } }); }); })( jQuery );
Save
Cancel