quoteDR -> quoteCT. We're not calling it Duck-Roll anymore.

This commit is contained in:
Nicolas Stepien 2012-03-03 19:48:16 +01:00
parent 0d7530f8d0
commit f310b8e47a
2 changed files with 7 additions and 7 deletions

View File

@ -72,7 +72,7 @@
*/ */
(function() { (function() {
var $, $$, DAY, Favicon, FileInfo, HOUR, MINUTE, Main, NAMESPACE, SECOND, Time, VERSION, anonymize, conf, config, d, engine, expandComment, expandThread, filter, flatten, g, getTitle, imgExpand, imgGif, imgHover, key, keybinds, log, nav, options, qr, quoteBacklink, quoteDR, quoteInline, quoteOP, quotePreview, redirect, replyHiding, reportButton, revealSpoilers, sauce, strikethroughQuotes, threadHiding, threadStats, threading, titlePost, ui, unread, updater, val, watcher, _base; var $, $$, DAY, Favicon, FileInfo, HOUR, MINUTE, Main, NAMESPACE, SECOND, Time, VERSION, anonymize, conf, config, d, engine, expandComment, expandThread, filter, flatten, g, getTitle, imgExpand, imgGif, imgHover, key, keybinds, log, nav, options, qr, quoteBacklink, quoteCT, quoteInline, quoteOP, quotePreview, redirect, replyHiding, reportButton, revealSpoilers, sauce, strikethroughQuotes, threadHiding, threadStats, threading, titlePost, ui, unread, updater, val, watcher, _base;
config = { config = {
main: { main: {
@ -766,7 +766,7 @@
if (conf['Quote Preview']) quotePreview.node(bq); if (conf['Quote Preview']) quotePreview.node(bq);
if (conf['Quote Inline']) quoteInline.node(bq); if (conf['Quote Inline']) quoteInline.node(bq);
if (conf['Indicate OP quote']) quoteOP.node(bq); if (conf['Indicate OP quote']) quoteOP.node(bq);
if (conf['Indicate Cross-thread Quotes']) return quoteDR.node(bq); if (conf['Indicate Cross-thread Quotes']) return quoteCT.node(bq);
} }
}; };
@ -3337,7 +3337,7 @@
} }
}; };
quoteDR = { quoteCT = {
init: function() { init: function() {
return g.callbacks.push(this.node); return g.callbacks.push(this.node);
}, },
@ -3844,7 +3844,7 @@
if (conf['Quote Preview']) quotePreview.init(); if (conf['Quote Preview']) quotePreview.init();
if (conf['Quote Backlinks']) quoteBacklink.init(); if (conf['Quote Backlinks']) quoteBacklink.init();
if (conf['Indicate OP quote']) quoteOP.init(); if (conf['Indicate OP quote']) quoteOP.init();
if (conf['Indicate Cross-thread Quotes']) quoteDR.init(); if (conf['Indicate Cross-thread Quotes']) quoteCT.init();
return $.ready(Main.ready); return $.ready(Main.ready);
}, },
ready: function() { ready: function() {

View File

@ -652,7 +652,7 @@ expandComment =
if conf['Indicate OP quote'] if conf['Indicate OP quote']
quoteOP.node bq quoteOP.node bq
if conf['Indicate Cross-thread Quotes'] if conf['Indicate Cross-thread Quotes']
quoteDR.node bq quoteCT.node bq
expandThread = expandThread =
init: -> init: ->
@ -2705,7 +2705,7 @@ quoteOP =
$.add quote, $.tn '\u00A0(OP)' $.add quote, $.tn '\u00A0(OP)'
return return
quoteDR = quoteCT =
init: -> init: ->
g.callbacks.push @node g.callbacks.push @node
node: (post) -> node: (post) ->
@ -3138,7 +3138,7 @@ Main =
quoteOP.init() quoteOP.init()
if conf['Indicate Cross-thread Quotes'] if conf['Indicate Cross-thread Quotes']
quoteDR.init() quoteCT.init()
$.ready Main.ready $.ready Main.ready