Merge pull request #2074 from bartvde/touch

Restore map interaction on touch devices
This commit is contained in:
Bart van den Eijnden
2014-05-15 15:58:38 +02:00

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();