From 1c7c6507aedb9f32277815f2a556176531524603 Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Thu, 28 Mar 2024 19:25:00 -0500 Subject: [PATCH] Speed up response slightly --- src/js/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/ajax.js b/src/js/ajax.js index 493f16e..7fe68f1 100644 --- a/src/js/ajax.js +++ b/src/js/ajax.js @@ -37,7 +37,7 @@ 'security': wpt_data.security }; $.post(ajaxurl, data, function (response) { - $('.wpt_log').text(response).show(500); + $('.wpt_log').text(response).show(300); }); }); });