From 07ae62c1ddb6e05ec4a7e5af6194fd443dc7b18d Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Wed, 21 Mar 2012 23:29:42 -0600 Subject: [PATCH] max consecutive penalties is 8, not 7 --- timer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timer.html b/timer.html index 62f3b87..16787b9 100644 --- a/timer.html +++ b/timer.html @@ -134,7 +134,7 @@ function startTimer(element, tenths, callback) { function clicky(event) { var tgt = event.target || window.event.srcElement; - tgt.set((tgt.remaining() + 60000) % (60000*7)); + tgt.set((tgt.remaining() + 60000) % (60000*8)); tgt.start(); }