This commit is contained in:
Nicolas Stepien 2011-10-31 17:48:07 +01:00
parent 66411f0b1f
commit 6e0dadd5ec
2 changed files with 6 additions and 9 deletions

View File

@ -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();
}

View File

@ -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()