bootstrap
bootstrap copied to clipboard
nav collapse on click on dropdown item
Hello,
First of all thanks for jays bootstrap plugin, its really nice !
I found a bug (with this example : http://www.jasny.net/bootstrap/examples/navmenu/) : On mobile (iPhone 6s with safari), when nav is open, if I click on dropdown menu (dropdown item with caret on screenshot), dropdown opening. But If I re-click on this dropdown, all nav collapsed.
Have you seen this bug ? Have you any solution ?
I just noticed this bug as well.
I have the same issue.
@fabienlm I can see it when testing on https://app.crossbrowsertesting.com. No solutions yet (
I have the same issue.
A simple work around is to remove the
data-toggle="dropdown"
and to to open the sub menu using a simple on click for example:
$('#languageDropDown').click(()=>{
$('#languageMenuList').slideToggle();
});