I hate you.

This commit is contained in:
Nicolas Stepien 2011-06-04 01:06:28 +02:00
parent 6edb57796d
commit 77da6ef8a7
2 changed files with 4 additions and 4 deletions

View File

@ -1106,8 +1106,8 @@
}
}
if ($.config('Cooldown')) {
duration = qr.sage ? 60000 : 30000;
$.setValue(g.BOARD + '/cooldown', Date.now() + duration);
duration = qr.sage ? 60 : 30;
$.setValue(g.BOARD + '/cooldown', Date.now() + duration * 1000);
cooldown.start();
}
}

View File

@ -840,8 +840,8 @@ qr =
else
$.rm dialog
if $.config 'Cooldown'
duration = if qr.sage then 60000 else 30000
$.setValue g.BOARD+'/cooldown', Date.now() + duration
duration = if qr.sage then 60 else 30
$.setValue g.BOARD+'/cooldown', Date.now() + duration * 1000
cooldown.start()
Recaptcha.reload()