From f310b8e47a46309486128085ea4c6bb98da844b0 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sat, 3 Mar 2012 19:48:16 +0100 Subject: [PATCH] quoteDR -> quoteCT. We're not calling it Duck-Roll anymore. --- 4chan_x.user.js | 8 ++++---- script.coffee | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 2e2ca9106..266314974 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -72,7 +72,7 @@ */ (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 = { main: { @@ -766,7 +766,7 @@ if (conf['Quote Preview']) quotePreview.node(bq); if (conf['Quote Inline']) quoteInline.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() { return g.callbacks.push(this.node); }, @@ -3844,7 +3844,7 @@ if (conf['Quote Preview']) quotePreview.init(); if (conf['Quote Backlinks']) quoteBacklink.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); }, ready: function() { diff --git a/script.coffee b/script.coffee index 1d7f31290..189db43bf 100644 --- a/script.coffee +++ b/script.coffee @@ -652,7 +652,7 @@ expandComment = if conf['Indicate OP quote'] quoteOP.node bq if conf['Indicate Cross-thread Quotes'] - quoteDR.node bq + quoteCT.node bq expandThread = init: -> @@ -2705,7 +2705,7 @@ quoteOP = $.add quote, $.tn '\u00A0(OP)' return -quoteDR = +quoteCT = init: -> g.callbacks.push @node node: (post) -> @@ -3138,7 +3138,7 @@ Main = quoteOP.init() if conf['Indicate Cross-thread Quotes'] - quoteDR.init() + quoteCT.init() $.ready Main.ready