replace -> [2..]
This commit is contained in:
parent
6756ab61d9
commit
ae9bc12cd5
@ -1693,7 +1693,7 @@
|
||||
},
|
||||
mouseover: function(e) {
|
||||
var el, id, qp, req, threadID;
|
||||
id = this.textContent.replace(">>", '');
|
||||
id = this.textContent.slice(2);
|
||||
qp = $('#qp');
|
||||
if (el = d.getElementById(id)) {
|
||||
qp.innerHTML = el.innerHTML;
|
||||
|
||||
@ -1349,7 +1349,7 @@ quotePreview =
|
||||
$.bind quote, 'mousemove', ui.hover
|
||||
$.bind quote, 'mouseout', ui.hoverend
|
||||
mouseover: (e) ->
|
||||
id = @textContent.replace ">>", ''
|
||||
id = @textContent[2..]
|
||||
qp = $ '#qp'
|
||||
if el = d.getElementById id
|
||||
qp.innerHTML = el.innerHTML
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user