Revert "favicon only in replies"

This reverts commit ecaed2c52e0cc42602f99cf198126d1c39faf54f.

thread watcher uses favicons on index
This commit is contained in:
James Campos 2011-09-12 01:21:53 -07:00
parent 83a6781257
commit 165da883db
2 changed files with 2 additions and 3 deletions

View File

@ -2850,6 +2850,7 @@
if (!$('#navtopr')) { if (!$('#navtopr')) {
return; return;
} }
Favicon.init();
g.hiddenReplies = $.get("hiddenReplies/" + g.BOARD + "/", {}); g.hiddenReplies = $.get("hiddenReplies/" + g.BOARD + "/", {});
tzOffset = (new Date()).getTimezoneOffset() / 60; tzOffset = (new Date()).getTimezoneOffset() / 60;
g.chanOffset = 5 - tzOffset; g.chanOffset = 5 - tzOffset;
@ -2948,7 +2949,6 @@
keybinds.init(); keybinds.init();
} }
if (g.REPLY) { if (g.REPLY) {
Favicon.init();
if (conf['Thread Updater']) { if (conf['Thread Updater']) {
updater.init(); updater.init();
} }

View File

@ -2199,6 +2199,7 @@ main =
if not $ '#navtopr' if not $ '#navtopr'
return return
Favicon.init()
g.hiddenReplies = $.get "hiddenReplies/#{g.BOARD}/", {} g.hiddenReplies = $.get "hiddenReplies/#{g.BOARD}/", {}
tzOffset = (new Date()).getTimezoneOffset() / 60 tzOffset = (new Date()).getTimezoneOffset() / 60
# GMT -8 is given as +480; would GMT +8 be -480 ? # GMT -8 is given as +480; would GMT +8 be -480 ?
@ -2295,8 +2296,6 @@ main =
keybinds.init() keybinds.init()
if g.REPLY if g.REPLY
Favicon.init()
if conf['Thread Updater'] if conf['Thread Updater']
updater.init() updater.init()