diff --git a/4chan_x.user.js b/4chan_x.user.js index ff6f52407..109014712 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3097,11 +3097,6 @@ if (conf['Indicate OP quote']) { quoteOP.init(); } - if (g.REPLY) { - if (conf['Image Preloading']) { - imgPreloading.init(); - } - } if (d.body) { return Main.onLoad(); } else { @@ -3143,6 +3138,9 @@ if (conf['Thread Stats']) { threadStats.init(); } + if (conf['Image Preloading']) { + imgPreloading.init(); + } if (conf['Reply Navigation']) { nav.init(); } diff --git a/script.coffee b/script.coffee index a6b67f7db..8b5445afa 100644 --- a/script.coffee +++ b/script.coffee @@ -2359,10 +2359,6 @@ Main = if conf['Indicate OP quote'] quoteOP.init() - if g.REPLY - if conf['Image Preloading'] - imgPreloading.init() - if d.body Main.onLoad() @@ -2404,6 +2400,9 @@ Main = if conf['Thread Stats'] threadStats.init() + if conf['Image Preloading'] + imgPreloading.init() + if conf['Reply Navigation'] nav.init()