diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d9b6af1f..3b8657ea6 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,11 @@ The links to individual versions below are to copies of the script with the upda - (Zixaphir, ccd0) Various other minor changes and bugfixes. +### v1.9.23.9 +*2015-02-08* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.23.9/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.23.9/builds/4chan-X-noupdate.crx "Chromium version")] + +- Fix top catalog link replacement with JSON Navigation off, External Catalog on. + ### v1.9.23.8 *2015-02-08* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.23.8/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.23.8/builds/4chan-X-noupdate.crx "Chromium version")] diff --git a/src/Miscellaneous/CatalogLinks.coffee b/src/Miscellaneous/CatalogLinks.coffee index 31e45d53b..f4d534639 100755 --- a/src/Miscellaneous/CatalogLinks.coffee +++ b/src/Miscellaneous/CatalogLinks.coffee @@ -3,8 +3,8 @@ CatalogLinks = if (Conf['External Catalog'] or Conf['JSON Navigation']) and !(Conf['JSON Navigation'] and g.VIEW is 'index') selector = switch g.VIEW when 'thread', 'archive' then '.navLinks.desktop > a' - when 'catalog' then '.navLinks > :first-child > a' - when 'index' then '.middlead + .desktop > a, .cataloglink > a' + when 'catalog' then '.navLinks > :first-child > a' + when 'index' then '#ctrl-top > a, .cataloglink > a' $.ready -> for link in $$ selector switch link.pathname