From 46a4a95963f5cb54ca8c628418e008b175f532ad Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Thu, 4 Jun 2015 00:22:40 +0200 Subject: [PATCH] Fix timer --- js/timer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/timer.js b/js/timer.js index bf605e5..edda3ce 100644 --- a/js/timer.js +++ b/js/timer.js @@ -1,5 +1,5 @@ /* vim: set ts=4 tw=4 sw=4 noet: */ -var timerRef=setInterval(function(){myTimer()}, 300); +var timerRef=setInterval(function(){myTimer()}, 1000); var timeStart = new Date().getTime() + timeout; function myTimer() { -- 2.39.2