From 4fa908385483e35c49eed328d71d64e920af7368 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 29 Jul 2014 12:46:35 +0200 Subject: [PATCH] Update link to closure-library issue --- src/ol/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/map.js b/src/ol/map.js index d33c79d95e..65df4e489d 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -601,7 +601,7 @@ ol.Map.prototype.getEventPixel = function(event) { // but touchend and touchcancel events have no targetTouches when // the last finger is removed from the screen. // So we ourselves compute the position of touch events. - // See https://code.google.com/p/closure-library/issues/detail?id=588 + // See https://github.com/google/closure-library/pull/323 if (goog.isDef(event.changedTouches)) { var touch = event.changedTouches.item(0); var viewportPosition = goog.style.getClientPosition(this.viewport_);