Missed one.

This commit is contained in:
Zixaphir 2014-01-06 09:17:54 -07:00
parent 8b6ea725e4
commit 3a776fb5e1
3 changed files with 3 additions and 3 deletions

View File

@ -4957,7 +4957,7 @@
for (ID in _ref) { for (ID in _ref) {
post = _ref[ID]; post = _ref[ID];
if (post.cb) { if (post.cb) {
post.cb.call(post); post.cb();
} }
} }
return QuoteThreading.hasRun = true; return QuoteThreading.hasRun = true;

View File

@ -4960,7 +4960,7 @@
for (ID in _ref) { for (ID in _ref) {
post = _ref[ID]; post = _ref[ID];
if (post.cb) { if (post.cb) {
post.cb.call(post); post.cb();
} }
} }
return QuoteThreading.hasRun = true; return QuoteThreading.hasRun = true;

View File

@ -27,7 +27,7 @@ QuoteThreading =
setup: -> setup: ->
$.off d, '4chanXInitFinished', QuoteThreading.setup $.off d, '4chanXInitFinished', QuoteThreading.setup
post.cb.call post for ID, post of g.posts when post.cb post.cb() for ID, post of g.posts when post.cb
QuoteThreading.hasRun = true QuoteThreading.hasRun = true