more main.js work-in-progress

This commit is contained in:
Mike Macgirvin 2023-08-01 17:56:38 +10:00
parent 2ae1943eb9
commit 1983b989ce
2 changed files with 2 additions and 2 deletions

View file

@ -1,8 +1,6 @@
Options -Indexes Options -Indexes
AddType application/x-java-archive .jar
AddType audio/ogg .oga AddType audio/ogg .oga
CGIPassAuth On CGIPassAuth On
#SSLCipherSuite HIGH:AES256-SHA:AES128-SHA:RC4:!aNULL:!eNULL:!EDH
# don't allow any web access to logfiles, even after rotation/compression # don't allow any web access to logfiles, even after rotation/compression
<FilesMatch "\.(out|log|gz)$"> <FilesMatch "\.(out|log|gz)$">

View file

@ -970,6 +970,7 @@ function liveUpdate(notify_id) {
clearTimeout(livetime); clearTimeout(livetime);
} }
livetime = setTimeout(liveUpdate, 10000); livetime = setTimeout(liveUpdate, 10000);
loadingPage = false;
return; return;
} }
console.log('liveUpdate'); console.log('liveUpdate');
@ -1063,6 +1064,7 @@ function liveUpdate(notify_id) {
}) })
.done(function() { .done(function() {
notificationsUpdate(); notificationsUpdate();
loadingPage = false;
}); });
} }