summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2020-12-29 12:13:15 -0600
committerGrant Shangreaux <grant@unabridgedsoftware.com>2020-12-29 12:13:15 -0600
commitc2dc60a601e14cb2c8fd9a17177508c20b632a72 (patch)
tree41629750c18cb3e4060a083e7745db36cd922ca9
parentdd9c9e4225b220a30c132effba1bca2482dfa8cb (diff)
downloademacsconf-wiki-c2dc60a601e14cb2c8fd9a17177508c20b632a72.tar.xz
emacsconf-wiki-c2dc60a601e14cb2c8fd9a17177508c20b632a72.zip
Fix: typo >:(
-rw-r--r--templates/page.tmpl2
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;