From fd737f10dca88ac49c54d66ffc1f6a886d124a53 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Wed, 20 Nov 2013 23:40:26 +0000 Subject: [PATCH] Change queued AJAX to go async --- phpgwapi/js/jsapi/egw_jsonq.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/jsapi/egw_jsonq.js b/phpgwapi/js/jsapi/egw_jsonq.js index 4b7beacd90..f89a841005 100644 --- a/phpgwapi/js/jsapi/egw_jsonq.js +++ b/phpgwapi/js/jsapi/egw_jsonq.js @@ -104,7 +104,7 @@ egw.extend('jsonq', egw.MODULE_GLOBAL, function() { { // TODO: Passing this to the "home" application looks quite ugly var request = egw.json('home.queue', jobs_to_send, jsonq_callback, this) - request.sendRequest(); + request.sendRequest(true); } } }