Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
plugins
/
redux-framework
/
redux-core
/
inc
/
extensions
/
taxonomy
/
✏️
Editing: redux-extension-taxonomy.js
/** * Redux Taxonomy * Dependencies: jquery * Created by: Dovy Paukstys * Date: 19 Feb. 2014 */ /* global redux */ ( function ( $ ) { 'use strict'; $.reduxTaxonomy = $.reduxTaxonomy || {}; $( document ).ready( function () { $.reduxTaxonomy.init(); } ); document.addEventListener( 'DOMContentLoaded', function () { $.reduxTaxonomy.init(); } ); $.reduxTaxonomy.init = function () { let reduxObject; $.redux.getOptName(); reduxObject = redux.optName; $.reduxTaxonomy.notLoaded = true; $.redux.initFields(); reduxObject.args.ajax_save = 0; reduxObject.args.disable_save_warn = true; }; // Check for a successful element added since WP ajax doesn't have a callback. $.reduxTaxonomy.editCount = $( '#the-list tr' ); $.reduxTaxonomy.editCheck = function () { let tr; if ( $( '#ajax-response .error' ).length ) { return false; } tr = $( '#the-list tr' ); if ( tr.length > $.reduxTaxonomy.editCount ) { window.location.reload(); return false; } setTimeout( $.reduxTaxonomy.editCheck, 100 ); $.reduxTaxonomy.editCount = tr.length; }; $( '#submit' ).on( 'click', function () { window.onbeforeunload = null; $.reduxTaxonomy.editCount = $( '#the-list tr' ).length; $( document ).ajaxSuccess( function () { $.reduxTaxonomy.editCheck(); } ); } ); } )( jQuery );
💾 Save
❌ Cancel