This commit is contained in:
Zixaphir 2014-01-09 14:18:23 -07:00
parent e7e411142f
commit aaf1ee06ee
3 changed files with 3 additions and 3 deletions

View File

@ -12776,7 +12776,7 @@
path.shift(); path.shift();
} }
boardID = path[0], view = path[1], threadID = path[2]; boardID = path[0], view = path[1], threadID = path[2];
if (view === 'catalog') { if (view === 'catalog' || boardID === 'f') {
return; return;
} }
if (e) { if (e) {

View File

@ -12753,7 +12753,7 @@
path.shift(); path.shift();
} }
boardID = path[0], view = path[1], threadID = path[2]; boardID = path[0], view = path[1], threadID = path[2];
if (view === 'catalog') { if (view === 'catalog' || boardID === 'f') {
return; return;
} }
if (e) { if (e) {

View File

@ -363,7 +363,7 @@ Main =
path.shift() if path[0] is '' path.shift() if path[0] is ''
[boardID, view, threadID] = path [boardID, view, threadID] = path
return if view is 'catalog' return if view is 'catalog' or boardID is 'f'
e.preventDefault() if e e.preventDefault() if e
history.pushState null, '', @pathname unless @id is 'popState' history.pushState null, '', @pathname unless @id is 'popState'