1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 19:07:58 +01:00

removed useless 3rd paramter from setTimeout

This commit is contained in:
Martin Stubenschrott
2007-11-09 00:43:08 +00:00
parent 4dfe91b246
commit 6294f599e4

View File

@@ -642,7 +642,7 @@ outer:
{
var timeout = vimperator.options["hinttimeout"];
if (timeout > 0)
activeTimeout = setTimeout(function() { processHints(true); }, timeout, true);
activeTimeout = setTimeout(function() { processHints(true); }, timeout);
return false;
}