server/core/js/maintenance-check.js
kondou 69f2c0544e Refresh if maintenance mode is over
Using status.php for this.
I modified status.php to also show, whether we're in maintenance.

Checks every 20 seconds if maintenance is over, if yes: reload.
2014-09-09 17:26:11 +02:00

20 lines
572 B
JavaScript

// Check every 20 seconds via status.php if maintenance is over
window.setInterval(checkStatus, 20000);
function checkStatus() {
var request = new XMLHttpRequest();
var ocroot = location.pathname.substr(
0, location.pathname.indexOf('index.php')
);
request.open("GET", ocroot+'status.php', true);
request.send();
request.onreadystatechange = function() {
if (request.readyState === 4) {
var response = request.responseText;
var responseobj = JSON.parse(response);
if (responseobj.maintenance === 'false') {
window.location.reload();
}
}
};
}