twitter bootstrap dropdown doesn't toggle closed when it should

后端 未结 8 1153
伪装坚强ぢ
伪装坚强ぢ 2021-02-10 00:16

Oh man, I\'ve been tearing my hair out over this. 4 hours on a dropdown.

I\'m using Twitter Bootstrap.

The fixed nav at the top has a dropdown, pretty standard s

8条回答
  •  天命终不由人
    2021-02-10 00:58

    I was seeing the same problem with 2.1.1.

    The solution that was posted on GitHub which worked easily for me was:

    $('body').on('touchstart.dropdown', '.dropdown-menu', function (e) { e.stopPropagation(); });

    Credit to blakeembrey at https://github.com/twitter/bootstrap/issues/5094

提交回复
热议问题