diff options
| author | Grant Shangreaux <grant@unabridgedsoftware.com> | 2020-12-29 11:53:26 -0600 |
|---|---|---|
| committer | Grant Shangreaux <grant@unabridgedsoftware.com> | 2020-12-29 11:53:26 -0600 |
| commit | 6740f652e528840df09d414fd18a05b1550d4dd9 (patch) | |
| tree | 9ce88e70069469cfecf43f1446821449d775cad9 | |
| parent | 6980ed89cbbe372138167cf1263f154fff67a201 (diff) | |
| download | emacsconf-wiki-6740f652e528840df09d414fd18a05b1550d4dd9.tar.xz emacsconf-wiki-6740f652e528840df09d414fd18a05b1550d4dd9.zip | |
Fix: time variable not being set in loop
Diffstat (limited to '')
| -rw-r--r-- | templates/page.tmpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index 3e94e1ae..de7d488a 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -46,6 +46,7 @@ mainVideo = document.getElementById("mainVideo"); timestamps = document.getElementsByClassName("time-link"); len = timestamps.length; + var seconds; for (i = 0; i < len; i++) { seconds = parseFloat(timestamps[i].dataset["timestamp"]); |
