max consecutive penalties is 8, not 7
This commit is contained in:
parent
434ebbf6bf
commit
07ae62c1dd
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue