Fix cooldown values. #932

This commit is contained in:
Nicolas Stepien 2013-02-22 20:54:46 +01:00
parent bae05a130e
commit 09854dd3aa
2 changed files with 15 additions and 12 deletions

View File

@ -5690,9 +5690,11 @@
},
cooldown: {
init: function() {
var board;
board = g.BOARD.ID;
QR.cooldown.types = {
thread: (function() {
switch (g.BOARD) {
switch (board) {
case 'q':
return 86400;
case 'b':
@ -5703,13 +5705,13 @@
return 300;
}
})(),
sage: g.BOARD === 'q' ? 600 : 60,
file: g.BOARD === 'q' ? 300 : 30,
post: g.BOARD === 'q' ? 60 : 30
sage: board === 'q' ? 600 : 60,
file: board === 'q' ? 300 : 30,
post: board === 'q' ? 60 : 30
};
QR.cooldown.cooldowns = $.get("" + g.BOARD + ".cooldown", {});
QR.cooldown.cooldowns = $.get("" + board + ".cooldown", {});
QR.cooldown.start();
return $.sync("" + g.BOARD + ".cooldown", QR.cooldown.sync);
return $.sync("" + board + ".cooldown", QR.cooldown.sync);
},
start: function() {
if (QR.cooldown.isCounting) {

View File

@ -118,17 +118,18 @@ QR =
cooldown:
init: ->
board = g.BOARD.ID
QR.cooldown.types =
thread: switch g.BOARD
thread: switch board
when 'q' then 86400
when 'b', 'soc', 'r9k' then 600
else 300
sage: if g.BOARD is 'q' then 600 else 60
file: if g.BOARD is 'q' then 300 else 30
post: if g.BOARD is 'q' then 60 else 30
QR.cooldown.cooldowns = $.get "#{g.BOARD}.cooldown", {}
sage: if board is 'q' then 600 else 60
file: if board is 'q' then 300 else 30
post: if board is 'q' then 60 else 30
QR.cooldown.cooldowns = $.get "#{board}.cooldown", {}
QR.cooldown.start()
$.sync "#{g.BOARD}.cooldown", QR.cooldown.sync
$.sync "#{board}.cooldown", QR.cooldown.sync
start: ->
return if QR.cooldown.isCounting
QR.cooldown.isCounting = true