summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;