Skip to content

Instantly share code, notes, and snippets.

@alanning
Created November 17, 2013 15:49
Show Gist options
  • Select an option

  • Save alanning/7514798 to your computer and use it in GitHub Desktop.

Select an option

Save alanning/7514798 to your computer and use it in GitHub Desktop.
fix bootstrap dropdown unclickable issue on iOS - https://github.com/twitter/bootstrap/issues/4550
// fix bootstrap dropdown unclickable issue on iOS
// https://github.com/twitter/bootstrap/issues/4550
$(document).on('touchstart.dropdown.data-api', '.dropdown-menu', function (e) {
e.stopPropagation()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment