%PDF- %PDF-
| Direktori : /var/www/projetos/spanish.ongrace.com/wp-content/plugins/everest-forms/assets/js/admin/ |
| Current File : /var/www/projetos/spanish.ongrace.com/wp-content/plugins/everest-forms/assets/js/admin/plugins.js |
/* global evf_plugins_params */
jQuery( function( $ ) {
$( document.body ).on( 'click' ,'tr[data-plugin="everest-forms/everest-forms.php"] span.deactivate a', function( e ) {
var isUpdateNotice = $( 'tr.plugin-update-tr[data-plugin="everest-forms/everest-forms.php"]' );
if ( isUpdateNotice.length || $( this ).hasClass( 'hasNotice' ) ) {
return true;
}
e.preventDefault();
$( this ).addClass( 'hasNotice' );
var data = {
action: 'everest_forms_deactivation_notice',
security: evf_plugins_params.deactivation_nonce
};
$.post( evf_plugins_params.ajax_url, data, function( response ) {
$( 'tr[data-plugin="everest-forms/everest-forms.php"]' ).addClass( 'updated' ).last().after( response.fragments.deactivation_notice );
}).fail( function( xhr ) {
window.console.log( xhr.responseText );
});
});
});