Call asynchronous JS after complete page load

This commit is contained in:
Hypolite Petovan 2018-08-14 03:01:36 +02:00
parent 1ca8d573e6
commit b6e57989dc
2 changed files with 7 additions and 5 deletions

View file

@ -302,7 +302,12 @@ $(function() {
$('#nav-notifications-menu').perfectScrollbar('update');
});
NavUpdate();
// Asynchronous calls are deferred until the very end of the page load to ease on slower connections
window.addEventListener("load", function(){
NavUpdate();
acl.get(0, 100);
});
// Allow folks to stop the ajax page updates with the pause/break key
$(document).keydown(function(event) {
if (event.keyCode == '8') {