bootstrap icon indicating copy to clipboard operation
bootstrap copied to clipboard

nav collapse on click on dropdown item

Open fabienlm opened this issue 7 years ago • 4 comments

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 ?

fabienlm avatar Mar 31 '17 14:03 fabienlm

I just noticed this bug as well.

DontEetMyShews avatar Apr 24 '17 15:04 DontEetMyShews

I have the same issue.

turakvlad avatar May 24 '17 15:05 turakvlad

@fabienlm I can see it when testing on https://app.crossbrowsertesting.com. No solutions yet (

Minstel avatar Jul 21 '17 07:07 Minstel

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();
    });

tijmenvangulik avatar Sep 16 '17 12:09 tijmenvangulik