summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2020-12-29 11:53:26 -0600
committerGrant Shangreaux <grant@unabridgedsoftware.com>2020-12-29 11:53:26 -0600
commit6740f652e528840df09d414fd18a05b1550d4dd9 (patch)
tree9ce88e70069469cfecf43f1446821449d775cad9 /templates
parent6980ed89cbbe372138167cf1263f154fff67a201 (diff)
downloademacsconf-wiki-6740f652e528840df09d414fd18a05b1550d4dd9.tar.xz
emacsconf-wiki-6740f652e528840df09d414fd18a05b1550d4dd9.zip
Fix: time variable not being set in loop
Diffstat (limited to 'templates')
-rw-r--r--templates/page.tmpl1
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"]);