We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc100b commit 2217951Copy full SHA for 2217951
countdown_page.js
@@ -8,6 +8,12 @@ timeRef.on('value', function (v) {
8
if ($.isNumeric(streamStart) && streamStart > 0) {
9
timerId = countdown(streamStart, function (ts) {
10
$(".countdown").text(ts.minutes + ":" + ("0" + ts.seconds).slice(-2));
11
+ // Magic string for auto-starting OBS
12
+ if (ts.value >= 0) {
13
+ window.document.title = "ULB GO GO GO GO";
14
+ } else {
15
+ window.document.title = "countdown";
16
+ }
17
});
18
} else {
19
$(".countdown").text("");
0 commit comments