diff options
author | Andreas Müller <andreas.mueller@othello.ch> | 2022-05-18 14:20:41 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@othello.ch> | 2022-05-18 14:20:41 +0200 |
commit | ad5607531d028801836823469f82d5e7c0a4f11f (patch) | |
tree | d1f2ab799637c3fc41e632416b8596b3c299961d /vorlesungen | |
parent | typos (diff) | |
download | SeminarSpezielleFunktionen-ad5607531d028801836823469f82d5e7c0a4f11f.tar.gz SeminarSpezielleFunktionen-ad5607531d028801836823469f82d5e7c0a4f11f.zip |
Dreiecke für Nav
Diffstat (limited to 'vorlesungen')
-rw-r--r-- | vorlesungen/stream/countdown.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vorlesungen/stream/countdown.html b/vorlesungen/stream/countdown.html index d8ec82e..e9d7d6e 100644 --- a/vorlesungen/stream/countdown.html +++ b/vorlesungen/stream/countdown.html @@ -25,7 +25,7 @@ function checkfor(d) { console.log("time string: " + ds); let start = new Date(ds).getTime(); console.log("now: " + now); - if ((start > now) && ((start-now) < 3600*1000)) { + if ((start > now) && ((start-now) < 3300*1000)) { deadline = start; console.log("set deadline to: " + ds); } else { |