From 3a776fb5e1b717037ae08a58ad2f805803a10fb8 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Mon, 6 Jan 2014 09:17:54 -0700 Subject: [PATCH] Missed one. --- builds/4chan-X.user.js | 2 +- builds/crx/script.js | 2 +- src/Quotelinks/QuoteThreading.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 5b818d23d..31c09ba8c 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -4957,7 +4957,7 @@ for (ID in _ref) { post = _ref[ID]; if (post.cb) { - post.cb.call(post); + post.cb(); } } return QuoteThreading.hasRun = true; diff --git a/builds/crx/script.js b/builds/crx/script.js index 44692e17a..96890233e 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -4960,7 +4960,7 @@ for (ID in _ref) { post = _ref[ID]; if (post.cb) { - post.cb.call(post); + post.cb(); } } return QuoteThreading.hasRun = true; diff --git a/src/Quotelinks/QuoteThreading.coffee b/src/Quotelinks/QuoteThreading.coffee index 94105c9b5..575a7c5f8 100755 --- a/src/Quotelinks/QuoteThreading.coffee +++ b/src/Quotelinks/QuoteThreading.coffee @@ -27,7 +27,7 @@ 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