Restore map interaction on touch devices

This commit is contained in:
Bart van den Eijnden
2014-05-15 15:27:49 +02:00
parent 92a7f9112c
commit 83ce0b2c7f

View File

@@ -218,7 +218,8 @@ ol.pointer.TouchSource.prototype.touchToPointer_ =
*/
ol.pointer.TouchSource.prototype.processTouches_ =
function(inEvent, inFunction) {
var touches = inEvent.getBrowserEvent().changedTouches.slice();
var touches = Array.prototype.slice.call(
inEvent.getBrowserEvent().changedTouches);
var count = touches.length;
function preventDefault() {
inEvent.preventDefault();