diff options
author | Runterer <37069007+Runterer@users.noreply.github.com> | 2022-05-26 15:44:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 15:44:34 +0200 |
commit | 97f9df441a8cf9e86545a7db2e0c1e935937638f (patch) | |
tree | 43adb2438e1e316c34997b13bb2d0fa3044f8f1b /vorlesungen/stream | |
parent | added tikz -> kudos nic (diff) | |
parent | Merge branch 'master' of github.com:AndreasFMueller/SeminarSpezielleFunktionen (diff) | |
download | SeminarSpezielleFunktionen-97f9df441a8cf9e86545a7db2e0c1e935937638f.tar.gz SeminarSpezielleFunktionen-97f9df441a8cf9e86545a7db2e0c1e935937638f.zip |
Merge branch 'AndreasFMueller:master' into master
Diffstat (limited to '')
-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 { |