|
|
|
@ -34,12 +34,12 @@
|
|
|
|
|
<script>
|
|
|
|
|
function checkIsEnd() {
|
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
|
xhr.open('POST', 'http://82.165.180.114/Scripted/WEB/index.php?action=getGameEtat', true);
|
|
|
|
|
xhr.open('POST', 'http://82.165.180.114/Scripted/index.php?action=getGameEtat', true);
|
|
|
|
|
xhr.responseType = 'text';
|
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
xhr.onload = function () {
|
|
|
|
|
if (xhr.responseText == "2") {
|
|
|
|
|
window.location.href = 'http://82.165.180.114/Scripted/WEB/index.php?action=endGame'
|
|
|
|
|
window.location.href = 'http://82.165.180.114/Scripted/index.php?action=endGame'
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
xhr.send(null);
|
|
|
|
@ -59,7 +59,7 @@
|
|
|
|
|
document.getElementById('countdown').innerHTML = hours + " heures " + minutes + " minutes " + remainingSeconds + " secondes";
|
|
|
|
|
if (seconds == 0) {
|
|
|
|
|
clearInterval(countdown);
|
|
|
|
|
window.location.href = 'http://82.165.180.114/Scripted/WEB/index.php?action=endGame'
|
|
|
|
|
window.location.href = 'http://82.165.180.114/Scripted/index.php?action=endGame'
|
|
|
|
|
} else {
|
|
|
|
|
seconds--;
|
|
|
|
|
}
|
|
|
|
|