Space between backlinks

This commit is contained in:
Nicolas Stepien 2011-05-28 22:26:37 +02:00
parent 1bd6d23e15
commit 82641c28cd
2 changed files with 4 additions and 2 deletions

View File

@ -1758,7 +1758,8 @@
if ($.config('Quote Inline')) { if ($.config('Quote Inline')) {
$.bind(link, 'click', quoteInline.toggle); $.bind(link, 'click', quoteInline.toggle);
} }
_results.push($.append($('.container', el), link)); $.append(container = $('.container', el), $.tn(' '));
_results.push($.append(container, link));
} }
return _results; return _results;
} }

View File

@ -1411,7 +1411,8 @@ quoteBacklink =
$.bind link, 'mouseout', quotePreview.mouseout $.bind link, 'mouseout', quotePreview.mouseout
if $.config 'Quote Inline' if $.config 'Quote Inline'
$.bind link, 'click', quoteInline.toggle $.bind link, 'click', quoteInline.toggle
$.append $('.container', el), link $.append container = $('.container', el), $.tn(' ')
$.append container, link
quoteInline = quoteInline =
init: -> init: ->