Yes, you can stop Mapbox listeners from preventing default actions by setting the flyer function to do nothing:
L.DomEvent.preventDefault = function(e) {return;}
To remove the outline placed around the element by the browser, which otherwise would have been prevented, you can add:
*:focus { outline: none; -webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; }
This allowed me to scroll through the touch devices, although I only tested on Android. Please note that this may have other consequences for your application - this can probably be prevented by going to mapbox.js and removing this call only from those listeners that you need.
source share