Closes "New" dropdown when switching category

* fixes #16394
* return false - stops all following event callbacks
This commit is contained in:
Morris Jobke 2015-05-19 14:47:13 +02:00
parent 12aef31115
commit 581227324a
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@
var $target = $(ev.target);
var itemId = $target.closest('li').attr('data-id');
this.setActiveItem(itemId);
return false;
ev.preventDefault();
}
};