add report buttons before backlinking

the backlink container's root will hit more often on the first try
This commit is contained in:
James Campos 2011-06-20 22:17:48 -07:00
parent 260e9a804f
commit 90fe5b74e3
2 changed files with 6 additions and 6 deletions

View File

@ -2592,6 +2592,9 @@
if (form && $.config('Quick Reply')) {
qr.init();
}
if ($.config('Report Button')) {
reportButton.init();
}
if ($.config('Quote Backlinks')) {
quoteBacklink.init();
}
@ -2604,9 +2607,6 @@
if ($.config('Indicate OP quote')) {
quoteOP.init();
}
if ($.config('Report Button')) {
reportButton.init();
}
if ($.config('Thread Watcher')) {
watcher.init();
}

View File

@ -2017,6 +2017,9 @@ main =
if form and $.config 'Quick Reply'
qr.init()
if $.config 'Report Button'
reportButton.init()
if $.config 'Quote Backlinks'
quoteBacklink.init()
@ -2029,9 +2032,6 @@ main =
if $.config 'Indicate OP quote'
quoteOP.init()
if $.config 'Report Button'
reportButton.init()
if $.config 'Thread Watcher'
watcher.init()