From: Michael Rasmussen Date: Wed, 3 Jun 2015 23:24:44 +0000 (+0200) Subject: Fix timer X-Git-Url: http://git.datanom.net/qtadmin.git/commitdiff_plain/a022472808097f74f14a9fa72f43abffccd272a2 Fix timer --- diff --git a/js/timer.js b/js/timer.js index d21a487..f68f084 100644 --- a/js/timer.js +++ b/js/timer.js @@ -22,7 +22,7 @@ function myTimer() { document.getElementById("timer").innerHTML = timeLeft; } } else { - if (timeLeft < last || last == -1) { + if ((timeLeft < last && timeLeft > 0) || last == -1) { last = timeLeft; console.log('Session valid < ' + timeLeft); timeLeft = '< ' + timeLeft + ' min';