File: //home/dfwparty/santadallas.com/wp-content/plugins/ws-form-pro/shared/js/ws-form-toolbar.js
(function($) {
'use strict';
$(function() {
$('.wsf-admin-bar-debug-console').on('click', function(e) { // , .wsf-admin-bar-styler
// Prevent default
e.preventDefault();
// Get href
var href = $('a', $(this)).attr('href').replace(/&/g, '&');
var helper_debug_matches = href.match(/[?&]helper_debug=(off|administrator|on)(?:&|$)/);
// Check debug console state
if(helper_debug_matches) {
var helper_debug = helper_debug_matches[1];
// Make AJAX request
$.ajax({
url: ws_form_toolbar.api_url_debug + helper_debug + '/',
type: 'POST',
beforeSend: function(xhr) {
xhr.setRequestHeader('X-WP-Nonce', ws_form_toolbar.x_wp_nonce);
},
complete: function(data){
location.reload();
}
});
}
});
});
})(jQuery);