From 216ccf95c5a22c241723a4ca0f74673a92423a50 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 10 May 2011 16:56:26 +0200 Subject: [PATCH] Uh? So parentNode isn't necessary? --- 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 5b6ac46b4..23de2d22b 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -1705,7 +1705,7 @@ $.bind(link, 'mousemove', ui.hover); $.bind(link, 'mouseout', ui.hoverend); } - _results.push($.before($('.op > blockquote, td > br, td > blockquote', el.parentNode), link)); + _results.push($.before($('.op > blockquote, td > br, td > blockquote', el), link)); } return _results; } diff --git a/script.coffee b/script.coffee index f7aac8e33..f9881ebf0 100644 --- a/script.coffee +++ b/script.coffee @@ -1366,7 +1366,7 @@ quoteBacklink = $.bind link, 'mouseover', quotePreview.mouseover $.bind link, 'mousemove', ui.hover $.bind link, 'mouseout', ui.hoverend - $.before $('.op > blockquote, td > br, td > blockquote', el.parentNode), link + $.before $('.op > blockquote, td > br, td > blockquote', el), link quotePreview = init: ->