HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
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);