From aaf1ee06ee97412bcd5f4606de64be5be0308c33 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Thu, 9 Jan 2014 14:18:23 -0700 Subject: [PATCH] "f" --- 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 188c43b10..ffc796092 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -12776,7 +12776,7 @@ path.shift(); } boardID = path[0], view = path[1], threadID = path[2]; - if (view === 'catalog') { + if (view === 'catalog' || boardID === 'f') { return; } if (e) { diff --git a/builds/crx/script.js b/builds/crx/script.js index e25885262..a62b6f79e 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -12753,7 +12753,7 @@ path.shift(); } boardID = path[0], view = path[1], threadID = path[2]; - if (view === 'catalog') { + if (view === 'catalog' || boardID === 'f') { return; } if (e) { diff --git a/src/General/Main.coffee b/src/General/Main.coffee index 2aee4641f..5e740bcd3 100755 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -363,7 +363,7 @@ Main = path.shift() if path[0] is '' [boardID, view, threadID] = path - return if view is 'catalog' + return if view is 'catalog' or boardID is 'f' e.preventDefault() if e history.pushState null, '', @pathname unless @id is 'popState'