Merge pull request #156 from MayhemYDG/space

Space between backlinks
This commit is contained in:
James Campos 2011-05-28 15:50:08 -07:00
commit 0b589b6a58
2 changed files with 4 additions and 2 deletions

View File

@ -1759,7 +1759,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;
}

View File

@ -1412,7 +1412,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: ->