From 165da883db3b0665fc057337f27ba163feb116c6 Mon Sep 17 00:00:00 2001 From: James Campos Date: Mon, 12 Sep 2011 01:21:53 -0700 Subject: [PATCH] Revert "favicon only in replies" This reverts commit ecaed2c52e0cc42602f99cf198126d1c39faf54f. thread watcher uses favicons on index --- 4chan_x.user.js | 2 +- script.coffee | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 7552ce8af..cb2f03128 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2850,6 +2850,7 @@ if (!$('#navtopr')) { return; } + Favicon.init(); g.hiddenReplies = $.get("hiddenReplies/" + g.BOARD + "/", {}); tzOffset = (new Date()).getTimezoneOffset() / 60; g.chanOffset = 5 - tzOffset; @@ -2948,7 +2949,6 @@ keybinds.init(); } if (g.REPLY) { - Favicon.init(); if (conf['Thread Updater']) { updater.init(); } diff --git a/script.coffee b/script.coffee index a27b0ad24..1837a71da 100644 --- a/script.coffee +++ b/script.coffee @@ -2199,6 +2199,7 @@ main = if not $ '#navtopr' return + Favicon.init() g.hiddenReplies = $.get "hiddenReplies/#{g.BOARD}/", {} tzOffset = (new Date()).getTimezoneOffset() / 60 # GMT -8 is given as +480; would GMT +8 be -480 ? @@ -2295,8 +2296,6 @@ main = keybinds.init() if g.REPLY - Favicon.init() - if conf['Thread Updater'] updater.init()