From c3a71e0ba3b0a574c36bcfafd5b87f59a5bdd2d3 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sat, 8 Mar 2014 16:25:18 -0700 Subject: [PATCH] >$.ready --- builds/4chan-X.user.js | 2 +- builds/crx/script.js | 2 +- src/General/Main.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 507debdeb..a523dffd0 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -13538,7 +13538,7 @@ } })(); if (g.VIEW === 'catalog') { - return $.ready(Index.catalogSwitch); + return Index.catalogSwitch(); } if (g.VIEW === 'thread') { g.THREADID = +pathname[3]; diff --git a/builds/crx/script.js b/builds/crx/script.js index 56cbe17c2..328af1826 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -13550,7 +13550,7 @@ } })(); if (g.VIEW === 'catalog') { - return $.ready(Index.catalogSwitch); + return Index.catalogSwitch(); } if (g.VIEW === 'thread') { g.THREADID = +pathname[3]; diff --git a/src/General/Main.coffee b/src/General/Main.coffee index fa15f5450..52f87ddfd 100755 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -15,7 +15,7 @@ Main = else 'index' if g.VIEW is 'catalog' - return $.ready Index.catalogSwitch + return Index.catalogSwitch() if g.VIEW is 'thread' g.THREADID = +pathname[3]