summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/htdocs/luci-static/resources/xhr.js
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-06-22 09:39:30 +0200
committerJo-Philipp Wich <jo@mein.io>2018-06-22 09:42:15 +0200
commit69782ccbccd67bac08f43b692c2a05afddb41bf0 (patch)
treebc875cd1d45d4c631a228795909766110e47b961 /modules/luci-base/htdocs/luci-static/resources/xhr.js
parente380cf51f8d60193f5743651f3c683389e4ef211 (diff)
luci-base: xhr.js: defer starting poll queue
Defer the start of the queue poll loop until the document has been loaded. This allows all XHR.poll() invocations on the page to register their handlers before the first batch of requests is made. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static/resources/xhr.js')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/xhr.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/xhr.js b/modules/luci-base/htdocs/luci-static/resources/xhr.js
index de4476cdd3..f1537a4481 100644
--- a/modules/luci-base/htdocs/luci-static/resources/xhr.js
+++ b/modules/luci-base/htdocs/luci-static/resources/xhr.js
@@ -204,7 +204,6 @@ XHR.poll = function(interval, url, data, callback, post)
};
XHR._q.push(e);
- XHR.run();
return e;
}
@@ -260,3 +259,5 @@ XHR.running = function()
{
return !!(XHR._r && XHR._i);
}
+
+document.addEventListener('DOMContentLoaded', XHR.run);