identify backlinker quotes in qp
This commit is contained in:
parent
da647236c0
commit
3c1ca5c302
12
4chan_x.js
12
4chan_x.js
@ -1846,7 +1846,7 @@
|
|||||||
return $.removeClass(d.getElementById(this.hash.slice(1)), 'qphl');
|
return $.removeClass(d.getElementById(this.hash.slice(1)), 'qphl');
|
||||||
},
|
},
|
||||||
mouseover: function(e) {
|
mouseover: function(e) {
|
||||||
var el, id, qp, req, threadID;
|
var el, id, qp, quote, replyID, req, threadID, _i, _len, _ref;
|
||||||
if (!(id = this.hash.slice(1))) {
|
if (!(id = this.hash.slice(1))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1854,6 +1854,16 @@
|
|||||||
if (el = d.getElementById(id)) {
|
if (el = d.getElementById(id)) {
|
||||||
qp.innerHTML = el.innerHTML;
|
qp.innerHTML = el.innerHTML;
|
||||||
$.addClass(el, 'qphl');
|
$.addClass(el, 'qphl');
|
||||||
|
if (this.className === 'backlink') {
|
||||||
|
replyID = this.parentNode.id;
|
||||||
|
_ref = $$('a.quotelink', qp);
|
||||||
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||||||
|
quote = _ref[_i];
|
||||||
|
if (quote.hash.slice(1) === replyID) {
|
||||||
|
quote.className = 'backlink';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
qp.innerHTML = "Loading " + id + "...";
|
qp.innerHTML = "Loading " + id + "...";
|
||||||
threadID = this.pathname.split('/').pop();
|
threadID = this.pathname.split('/').pop();
|
||||||
|
|||||||
@ -1472,6 +1472,11 @@ quotePreview =
|
|||||||
if el = d.getElementById id
|
if el = d.getElementById id
|
||||||
qp.innerHTML = el.innerHTML
|
qp.innerHTML = el.innerHTML
|
||||||
$.addClass el, 'qphl'
|
$.addClass el, 'qphl'
|
||||||
|
if @className is 'backlink'
|
||||||
|
replyID = @parentNode.id
|
||||||
|
for quote in $$ 'a.quotelink', qp
|
||||||
|
if quote.hash[1..] is replyID
|
||||||
|
quote.className = 'backlink'
|
||||||
else
|
else
|
||||||
qp.innerHTML = "Loading #{id}..."
|
qp.innerHTML = "Loading #{id}..."
|
||||||
threadID = @pathname.split('/').pop()
|
threadID = @pathname.split('/').pop()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user