diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-05-19 17:29:08 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-05-19 17:29:08 +0200 |
commit | 786bba412cfab833ebb52fd64b738010a982c4c1 (patch) | |
tree | 857ce647e10a4156cd0e8ac58e1e37f29943e5d6 /vorlesungen/stream | |
parent | some local changes (diff) | |
parent | Merge pull request #13 from enezerdem/master (diff) | |
download | SeminarSpezielleFunktionen-786bba412cfab833ebb52fd64b738010a982c4c1.tar.gz SeminarSpezielleFunktionen-786bba412cfab833ebb52fd64b738010a982c4c1.zip |
Merge branch 'master' of github.com:AndreasFMueller/SeminarSpezielleFunktionen
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 { |