From a680a5d409970d7e736ed69381674d995fe9fd62 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 18 Oct 2014 01:04:02 -0700 Subject: [PATCH] Fix clash between index/catalog link setting in CatalogLinks and Index. --- src/Miscellaneous/CatalogLinks.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Miscellaneous/CatalogLinks.coffee b/src/Miscellaneous/CatalogLinks.coffee index e51b853dc..faf1059bb 100755 --- a/src/Miscellaneous/CatalogLinks.coffee +++ b/src/Miscellaneous/CatalogLinks.coffee @@ -1,6 +1,6 @@ CatalogLinks = init: -> - if Conf['External Catalog'] or Conf['JSON Navigation'] + if (Conf['External Catalog'] or Conf['JSON Navigation']) and !(Conf['JSON Navigation'] and g.VIEW is 'index') selector = switch g.VIEW when 'thread' then '.navLinks.desktop > a' when 'catalog' then '.navLinks > :first-child > a'