Only disable top-level nav items if they possess no children.
authorLaury GvR <laury@gaslightmedia.com>
Wed, 6 Nov 2019 00:23:52 +0000 (19:23 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Wed, 6 Nov 2019 00:23:52 +0000 (19:23 -0500)
header.php
js/app.js
js/custom/pageSetup.js
style.css

index eb0deb2..505518a 100644 (file)
@@ -5,7 +5,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title><?php wp_title(); ?></title>
     <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri() ; ?>/favicon.ico?v=1.0">
-    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.0.1.0">
+    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.0.2.0">
     <link href='//fonts.googleapis.com/css?family=Josefin+Sans:400,600,700' rel='stylesheet' type='text/css'>
     <?php wp_head(); ?>
   </head>
index 728ccfa..10f8828 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -12,7 +12,9 @@ $(document).foundation();
 $(document).ready(function () {
     var main_nav_top_items = $('.top-bar-section > ul').children("li");
     main_nav_top_items.each(function() {
-        $(this).children("a").attr("href", "#");
+        if ($(this).hasClass('menu-item-has-children')) {
+            $(this).children("a").attr("href", "#");
+        }
     });
 
     $('ul.children').each(function () {
index bdf5c03..dea262b 100644 (file)
@@ -3,7 +3,9 @@ $(document).foundation();
 $(document).ready(function () {
     var main_nav_top_items = $('.top-bar-section > ul').children("li");
     main_nav_top_items.each(function() {
-        $(this).children("a").attr("href", "#");
+        if ($(this).hasClass('menu-item-has-children')) {
+            $(this).children("a").attr("href", "#");
+        }
     });
 
     $('ul.children').each(function () {
index 966e019..dbf59fd 100644 (file)
--- a/style.css
+++ b/style.css
@@ -3,5 +3,5 @@ Theme Name: FineWineJourneys
 Author: Gaslight Media
 Author URI: http://www.gaslightmedia.com
 Description: A theme for FineWineJourneys
-Version: 1.0.1.0
+Version: 1.0.2.0
 */