Prevent the touchstart event propagation on the dropdown menus in the navbar.

This allows the dropdowns to be used on a touch device.
This commit is contained in:
Alec Perkins 2012-09-17 10:01:44 -04:00
parent 549ebdc1c6
commit 43c2a15f9d

View File

@ -118,7 +118,7 @@
if (location.hash) shiftWindow();
window.addEventListener("hashchange", shiftWindow);
$('.dropdown-menu').click(function(event) {
$('.dropdown-menu').on('click touchstart', function(event) {
event.stopPropagation();
});
</script>