From 9ffabb481cce40575a998ec8b5e597a1a3abffd8 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 14 Oct 2013 14:22:51 +0200 Subject: [PATCH] Rename offset* attributes to delta* --- src/ol/interaction/draginteraction.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/interaction/draginteraction.js b/src/ol/interaction/draginteraction.js index 9d81f7a2bb..6d421fed93 100644 --- a/src/ol/interaction/draginteraction.js +++ b/src/ol/interaction/draginteraction.js @@ -39,12 +39,12 @@ ol.interaction.Drag = function() { /** * @type {number} */ - this.offsetX = 0; + this.deltaX = 0; /** * @type {number} */ - this.offsetY = 0; + this.deltaY = 0; /** * @type {ol.Coordinate}