diff options
author | JODBaer <55744603+JODBaer@users.noreply.github.com> | 2022-05-20 18:17:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 18:17:33 +0200 |
commit | 1ba2e2bba16d5ec899371f37bbbf030f6909ec50 (patch) | |
tree | 1044fc5088cdb0f2d13b5ea34848d4e4fe817b9b /vorlesungen/stream | |
parent | presentation FM-Bessel (diff) | |
parent | add dreieck3d9.pov (diff) | |
download | SeminarSpezielleFunktionen-1ba2e2bba16d5ec899371f37bbbf030f6909ec50.tar.gz SeminarSpezielleFunktionen-1ba2e2bba16d5ec899371f37bbbf030f6909ec50.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 { |