From 6114c7f1bbdd419d9e26f23e68da92c24f3c1de4 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Wed, 18 May 2011 23:09:20 +0200 Subject: [PATCH] Fix inception. --- 4chan_x.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.js b/4chan_x.js index 3ee162adb..1ece8ac43 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -1674,7 +1674,7 @@ }, node: function(root) { var el, id, link, qid, quote, quotes, tid, _i, _len, _ref, _results; - if (root.className === 'inline') { + if (root.className) { return; } id = root.id || $('td[id]', root).id; diff --git a/script.coffee b/script.coffee index 18a9ab228..04981b09e 100644 --- a/script.coffee +++ b/script.coffee @@ -1352,7 +1352,7 @@ quoteBacklink = init: -> g.callbacks.push quoteBacklink.node node: (root) -> - return if root.className is 'inline' + return if root.className #better coffee-script way of doing this? id = root.id or $('td[id]', root).id quotes = {}