diff options
author | Grant Shangreaux <grant@unabridgedsoftware.com> | 2020-12-29 12:41:43 -0600 |
---|---|---|
committer | Grant Shangreaux <grant@unabridgedsoftware.com> | 2020-12-29 12:41:43 -0600 |
commit | 3e0f5fb62efc3de9c6c0139500f0d20e9f2c381f (patch) | |
tree | 465ef76223aedf23c595d3f545fc3f0f69828fc7 | |
parent | 6698f95f92d4adbd06a9dc302b4ccbe77bb760be (diff) | |
download | emacsconf-wiki-3e0f5fb62efc3de9c6c0139500f0d20e9f2c381f.tar.xz emacsconf-wiki-3e0f5fb62efc3de9c6c0139500f0d20e9f2c381f.zip |
Fix: missing string parsing in callback
-rw-r--r-- | templates/page.tmpl | 2 |
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)) }; } } |