diff options
author | Grant Shangreaux <grant@unabridgedsoftware.com> | 2020-12-29 12:13:15 -0600 |
---|---|---|
committer | Grant Shangreaux <grant@unabridgedsoftware.com> | 2020-12-29 12:13:15 -0600 |
commit | c2dc60a601e14cb2c8fd9a17177508c20b632a72 (patch) | |
tree | 41629750c18cb3e4060a083e7745db36cd922ca9 /templates | |
parent | dd9c9e4225b220a30c132effba1bca2482dfa8cb (diff) | |
download | emacsconf-wiki-c2dc60a601e14cb2c8fd9a17177508c20b632a72.tar.xz emacsconf-wiki-c2dc60a601e14cb2c8fd9a17177508c20b632a72.zip |
Fix: typo >:(
Diffstat (limited to '')
-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 722fa45b..6d223308 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -43,7 +43,7 @@ // expects a string like "mm:ss" function parseSeconds(timeString) { - times = timesString.split(":"); + times = timeString.split(":"); minutes = parseFloat(times[0]); seconds = parseFloat(times[1]); return (minutes * 60) + seconds; |