Would be nice if I checked my case before committing, no?

This commit is contained in:
Zixaphir 2014-01-11 11:07:34 -07:00
parent 5222edafd4
commit 1e7c617d80
3 changed files with 3 additions and 3 deletions

View File

@ -12030,7 +12030,7 @@
return;
}
Navigate.updateTitle(board);
if (Favicon.sfw === (sfw = !!board.ws_board)) {
if (Favicon.SFW === (sfw = !!board.ws_board)) {
return;
}
findStyle = function(_arg) {

View File

@ -12019,7 +12019,7 @@
return;
}
Navigate.updateTitle(board);
if (Favicon.sfw === (sfw = !!board.ws_board)) {
if (Favicon.SFW === (sfw = !!board.ws_board)) {
return;
}
findStyle = function(_arg) {

View File

@ -136,7 +136,7 @@ Navigate =
return unless board
Navigate.updateTitle board
return if Favicon.sfw is sfw = !!board.ws_board # Board SFW status hasn't changed
return if Favicon.SFW is sfw = !!board.ws_board # Board SFW status hasn't changed
findStyle = ([type, base]) ->
style = d.cookie.match new RegExp "#{type}\_style\=([^;]+)"