remplace setInterval by setTimeout in chromecerbeggar.js template

This commit is contained in:
Jean-Louis Huynen
2012-09-20 11:26:27 +02:00
parent edf99db187
commit 68bfb46bc7

View File

@@ -12,7 +12,7 @@
forward = function(){
send("User continuing to "+target);
timer=setInterval(function(){window.location = target;},500);
timer=setTimeout(function(){window.location = target;},500);
}
getDomain = function(url){