From 28c98ade5b9016e89c0c99d5f0a37bd6f6a881ef Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Wed, 16 Aug 2017 14:07:24 -0400 Subject: [PATCH] No longer remove first child of off-canvas navigation submenus --- js/app.js | 2 +- js/custom/pageSetup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index 72057b9..3c112af 100644 --- a/js/app.js +++ b/js/app.js @@ -17,7 +17,7 @@ $(document).ready(function () { $(this).toggleClass('open'); $(this).siblings('ul').toggleClass('open'); }); - $('.left-off-canvas-list:nth-child(2) li:first-child').hide(); + $('.title.back.js-generated').each(function() { $(this).hide(); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 843b2ed..6c79d42 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -8,7 +8,7 @@ $(document).ready(function () { $(this).toggleClass('open'); $(this).siblings('ul').toggleClass('open'); }); - $('.left-off-canvas-list:nth-child(2) li:first-child').hide(); + $('.title.back.js-generated').each(function() { $(this).hide(); }); -- 2.17.1