From 82641c28cd53f9f4d0bd68041aa895b1ca357c9b Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sat, 28 May 2011 22:26:37 +0200 Subject: [PATCH] Space between backlinks --- 4chan_x.user.js | 3 ++- script.coffee | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 7fd552837..e3053f8a3 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1758,7 +1758,8 @@ if ($.config('Quote Inline')) { $.bind(link, 'click', quoteInline.toggle); } - _results.push($.append($('.container', el), link)); + $.append(container = $('.container', el), $.tn(' ')); + _results.push($.append(container, link)); } return _results; } diff --git a/script.coffee b/script.coffee index d290d0e6b..2d43781d6 100644 --- a/script.coffee +++ b/script.coffee @@ -1411,7 +1411,8 @@ quoteBacklink = $.bind link, 'mouseout', quotePreview.mouseout if $.config 'Quote Inline' $.bind link, 'click', quoteInline.toggle - $.append $('.container', el), link + $.append container = $('.container', el), $.tn(' ') + $.append container, link quoteInline = init: ->