Browse Source

variable visible en vista individual

Deisy 8 years ago
parent
commit
dde352a4a3
1 changed files with 5 additions and 5 deletions
  1. 5 5
      static/src/js/menu.js

+ 5 - 5
static/src/js/menu.js

@@ -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');
         });
 
 });