summaryrefslogtreecommitdiffstats
path: root/templates/page.tmpl
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2020-12-29 12:41:43 -0600
committerGrant Shangreaux <grant@unabridgedsoftware.com>2020-12-29 12:41:43 -0600
commit3e0f5fb62efc3de9c6c0139500f0d20e9f2c381f (patch)
tree465ef76223aedf23c595d3f545fc3f0f69828fc7 /templates/page.tmpl
parent6698f95f92d4adbd06a9dc302b4ccbe77bb760be (diff)
downloademacsconf-wiki-3e0f5fb62efc3de9c6c0139500f0d20e9f2c381f.tar.xz
emacsconf-wiki-3e0f5fb62efc3de9c6c0139500f0d20e9f2c381f.zip
Fix: missing string parsing in callback
Diffstat (limited to 'templates/page.tmpl')
-rw-r--r--templates/page.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl
index b71d7d19..e4a1c9f2 100644
--- a/templates/page.tmpl
+++ b/templates/page.tmpl
@@ -63,7 +63,7 @@
console.log("seconds: ", seconds);
timestamps[i].onclick = function () {
- seekToTime(this.innerText)
+ seekToTime(parseSeconds(this.innerText))
};
}
}