max consecutive penalties is 8, not 7

This commit is contained in:
Neale Pickett 2012-03-21 23:29:42 -06:00
parent 434ebbf6bf
commit 07ae62c1dd
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ function startTimer(element, tenths, callback) {
function clicky(event) { function clicky(event) {
var tgt = event.target || window.event.srcElement; var tgt = event.target || window.event.srcElement;
tgt.set((tgt.remaining() + 60000) % (60000*7)); tgt.set((tgt.remaining() + 60000) % (60000*8));
tgt.start(); tgt.start();
} }