Skip to content
Snippets Groups Projects
Commit c3f9dc7e authored by Mateus Rambo Strey's avatar Mateus Rambo Strey
Browse files

fix navbar dropdown being called multiple times

parent 52341aac
No related branches found
No related tags found
No related merge requests found
...@@ -6,41 +6,39 @@ var nav_content = function () { ...@@ -6,41 +6,39 @@ var nav_content = function () {
nav_dropdown = '.nav-dropdown'; nav_dropdown = '.nav-dropdown';
nav_close = '.navigation-content-close'; nav_close = '.navigation-content-close';
$(document).ready(function () { var closeContent = function() {
var closeContent = function() { toggled = null;
toggled = null; $(nav_content).slideUp();
$(nav_content).slideUp(); }
}
$(nav_content).hide();
$(nav_content).hide(); $(nav_close).click(function() { closeContent(); });
$(nav_close).click(function() { closeContent(); });
$(nav_dropdown).each(function() {
$(nav_dropdown).each(function() { var content = $(this).data('content');
var content = $(this).data('content'); nav_list.push(content);
nav_list.push(content); $(nav_prefix + content).hide();
$(nav_prefix + content).hide(); });
});
$(nav_dropdown).click(function(){ $(nav_dropdown).click(function(){
var element = this, var element = this,
content = $(element).data('content'); content = $(element).data('content');
if (toggled == content) closeContent(); if (toggled == content) closeContent();
else { else {
toggled = content; toggled = content;
$(nav_content).slideUp(null, function() { $(nav_content).slideUp(null, function() {
var length = nav_list.length; var length = nav_list.length;
for (var i = 0; i < length; ++i) { for (var i = 0; i < length; ++i) {
var content = nav_list[i]; var content = nav_list[i];
($(element).data('content') == content) ? $(nav_prefix + content).show() : $(nav_prefix + content).hide(); ($(element).data('content') == content) ? $(nav_prefix + content).show() : $(nav_prefix + content).hide();
} }
}); });
$(nav_content).slideDown(); $(nav_content).slideDown();
} }
});
}); });
} }
......
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