From 3936c62e7767b8b6441d121342c24d4749f11898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Wed, 11 Jul 2012 17:46:57 +0200 Subject: [PATCH] drag handler constructor should call its parent --- src/ol/handler/Drag.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/handler/Drag.js b/src/ol/handler/Drag.js index 107e78d78c..ee6dd63285 100644 --- a/src/ol/handler/Drag.js +++ b/src/ol/handler/Drag.js @@ -24,6 +24,7 @@ goog.require('goog.fx.Dragger'); * @param {Object} states An object for the handlers to share states. */ ol.handler.Drag = function(map, elt, states) { + goog.base(this); /** * @type {ol.Map}