From c2dc60a601e14cb2c8fd9a17177508c20b632a72 Mon Sep 17 00:00:00 2001 From: Grant Shangreaux Date: Tue, 29 Dec 2020 12:13:15 -0600 Subject: Fix: typo >:( --- templates/page.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3