diff --git a/examples/mobile-jq.html b/examples/mobile-jq.html index 6267a21bd5..f4cf5e7895 100644 --- a/examples/mobile-jq.html +++ b/examples/mobile-jq.html @@ -3,6 +3,7 @@ OpenLayers with jQuery Mobile + @@ -92,6 +93,11 @@ $("#nav").click(); $("#nav").click(); // jquery mobile bug forces 2 calls to refresh radio ui + + // disable scrolling from the map + $("#map").bind("touchstart", function(event) { + event.preventDefault(); + }); });