Skip to content
Snippets Groups Projects
Commit 70a73755 authored by Alberto Siles's avatar Alberto Siles Committed by Alberto Siles
Browse files

Fix typo on navigation library

parent 938cc747
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ navigation: ...@@ -119,7 +119,7 @@ navigation:
version: VERSION version: VERSION
css: css:
theme: theme:
css/navigation.css: {} css/components/navigation.css: {}
node: node:
version: VERSION version: VERSION
......
...@@ -29,6 +29,12 @@ ...@@ -29,6 +29,12 @@
position = scroll; position = scroll;
}); });
$('.dropdown-item a.dropdown-toggle').on("click", function(e){
$(this).next('ul').toggle();
e.stopPropagation();
e.preventDefault();
});
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment