|
@@ -1,15 +1,15 @@
|
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
-// Mobile menu
|
|
|
+// Mobile menu
|
|
|
$(".menu-toggle").click(function () {
|
|
|
console.log( "click" );
|
|
|
$('body').toggleClass( "menu-show" );
|
|
|
});
|
|
|
|
|
|
-$(".menu-toggle").unbind('click').bind('click',function(){
|
|
|
- $('body').toggleClass( "menu-show" );
|
|
|
- });
|
|
|
+// $(".menu-toggle").unbind('click').bind('click',function(){
|
|
|
+// $('body').toggleClass( "menu-show" );
|
|
|
+// });
|
|
|
|
|
|
|
|
|
|
|
@@ -58,7 +58,7 @@ $(document).ready(function() {
|
|
|
e.preventDefault(); // prevent the default action
|
|
|
e.stopPropagation(); // stop the click from bubbling
|
|
|
$(this).parent().toggleClass('selected');
|
|
|
- $(this).toggleClass('mob_sub_open');
|
|
|
+ $(this).toggleClass('mob_sub_open');
|
|
|
});
|
|
|
|
|
|
});
|