Tell infoscreen to wait until finished
This commit is contained in:
parent
a5819c492e
commit
fbe4988e22
1 changed files with 6 additions and 0 deletions
|
@ -87,6 +87,12 @@
|
||||||
document.body.className = display.body;
|
document.body.className = display.body;
|
||||||
title.innerHTML = display.message;
|
title.innerHTML = display.message;
|
||||||
updateCountDown();
|
updateCountDown();
|
||||||
|
window.waitUntil = display.time.getTime();
|
||||||
|
if (window.parent) {
|
||||||
|
window.parent.postMessage({
|
||||||
|
waitUntil: window.waitUntil,
|
||||||
|
}, '*');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue