|
|
@@ -194,10 +194,13 @@
|
|
|
// show drop down
|
|
|
drop_down.show(0);
|
|
|
} else {
|
|
|
+ // <--- removed to fix bug where links with subpages are not accessibles in mobile view
|
|
|
// remove active class
|
|
|
- parents.parent($li).removeClass(activeTriggerMobile);
|
|
|
+ // parents.parent($li).removeClass(activeTriggerMobile);
|
|
|
// hide drop down
|
|
|
- drop_down.hide(0);
|
|
|
+ // drop_down.hide(0);
|
|
|
+ // ---->
|
|
|
+ window.location.href = $(this).parent('a').attr('href');
|
|
|
}
|
|
|
// stop a tag going to anywhere
|
|
|
return false;
|
|
|
@@ -411,4 +414,4 @@
|
|
|
});
|
|
|
};
|
|
|
/*global $, jQuery, document*/
|
|
|
-}(jQuery));
|
|
|
+}(jQuery));
|