shave a line

This commit is contained in:
James Campos 2011-07-20 22:12:06 -07:00
parent 50e4c61bb7
commit 8e86e16cd4
2 changed files with 2 additions and 4 deletions

View File

@ -2143,12 +2143,11 @@
},
mouseover: function(e) {
var el, id, qp, quote, replyID, threadID, _i, _len, _ref, _results;
qp = $.el('div', {
qp = ui.el = $.el('div', {
id: 'qp',
className: 'replyhl'
});
$.append(d.body, qp);
ui.el = qp;
id = this.hash.slice(1);
if (el = d.getElementById(id)) {
qp.innerHTML = el.innerHTML;

View File

@ -1661,11 +1661,10 @@ quotePreview =
$.bind quote, 'mousemove', ui.hover
$.bind quote, 'mouseout', quotePreview.mouseout
mouseover: (e) ->
qp = $.el 'div',
qp = ui.el = $.el 'div',
id: 'qp'
className: 'replyhl'
$.append d.body, qp
ui.el = qp
id = @hash[1..]
if el = d.getElementById id