Commit 43c2a15f by Alec Perkins

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

This allows the dropdowns to be used on a touch device.
parent 549ebdc1
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment