This commit is contained in:
parent
c5d686ceb0
commit
359a503bd0
@ -2801,12 +2801,13 @@
|
|||||||
thread = g.threads[this.parentNode.dataset.fullID];
|
thread = g.threads[this.parentNode.dataset.fullID];
|
||||||
if (e.shiftKey) {
|
if (e.shiftKey) {
|
||||||
PostHiding.toggle(thread.OP);
|
PostHiding.toggle(thread.OP);
|
||||||
|
return e.preventDefault();
|
||||||
} else if (e.altKey) {
|
} else if (e.altKey) {
|
||||||
Index.togglePin(thread);
|
Index.togglePin(thread);
|
||||||
|
return e.preventDefault();
|
||||||
} else {
|
} else {
|
||||||
Navigate.navigate.call(this);
|
return Navigate.navigate.call(this, e);
|
||||||
}
|
}
|
||||||
return e.preventDefault();
|
|
||||||
},
|
},
|
||||||
onOver: function(e) {
|
onOver: function(e) {
|
||||||
var el, nodes;
|
var el, nodes;
|
||||||
|
|||||||
@ -2860,12 +2860,13 @@
|
|||||||
thread = g.threads[this.parentNode.dataset.fullID];
|
thread = g.threads[this.parentNode.dataset.fullID];
|
||||||
if (e.shiftKey) {
|
if (e.shiftKey) {
|
||||||
PostHiding.toggle(thread.OP);
|
PostHiding.toggle(thread.OP);
|
||||||
|
return e.preventDefault();
|
||||||
} else if (e.altKey) {
|
} else if (e.altKey) {
|
||||||
Index.togglePin(thread);
|
Index.togglePin(thread);
|
||||||
|
return e.preventDefault();
|
||||||
} else {
|
} else {
|
||||||
Navigate.navigate.call(this);
|
return Navigate.navigate.call(this, e);
|
||||||
}
|
}
|
||||||
return e.preventDefault();
|
|
||||||
},
|
},
|
||||||
onOver: function(e) {
|
onOver: function(e) {
|
||||||
var el, nodes;
|
var el, nodes;
|
||||||
|
|||||||
@ -203,11 +203,12 @@ Index =
|
|||||||
thread = g.threads[@parentNode.dataset.fullID]
|
thread = g.threads[@parentNode.dataset.fullID]
|
||||||
if e.shiftKey
|
if e.shiftKey
|
||||||
PostHiding.toggle thread.OP
|
PostHiding.toggle thread.OP
|
||||||
|
e.preventDefault()
|
||||||
else if e.altKey
|
else if e.altKey
|
||||||
Index.togglePin thread
|
Index.togglePin thread
|
||||||
|
e.preventDefault()
|
||||||
else
|
else
|
||||||
Navigate.navigate.call @
|
Navigate.navigate.call @, e
|
||||||
e.preventDefault()
|
|
||||||
|
|
||||||
onOver: (e) ->
|
onOver: (e) ->
|
||||||
# 4chan's less than stellar CSS forces us to include a .post and .postInfo
|
# 4chan's less than stellar CSS forces us to include a .post and .postInfo
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user