From 428cf7438cb5fb44061ee9387e152b012e71d101 Mon Sep 17 00:00:00 2001 From: "Justin F. Hallett" Date: Wed, 5 Jul 2017 10:48:43 -0600 Subject: [PATCH] if call back is false, make sure we reset output busy flag so it can be called again --- js/widgets/widget-output.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/widgets/widget-output.js b/js/widgets/widget-output.js index 014b3de0..a0215611 100644 --- a/js/widgets/widget-output.js +++ b/js/widgets/widget-output.js @@ -220,6 +220,7 @@ if ($.isFunction(wo.output_callback)) { tmp = wo.output_callback(c, mydata, c.pager && c.pager.ajaxObject.url || null); if ( tmp === false ) { + output.busy = false; return; } else if ( typeof tmp === 'string' ) { mydata = tmp;