From 56b08adef7a47adc6228acd9705febe0272cd442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Wed, 25 Feb 2015 21:19:49 +0100 Subject: [PATCH] Add goog.provide for ol.DrawEventType --- src/ol/interaction/drawinteraction.js | 1 + test/spec/ol/interaction/drawinteraction.test.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ol/interaction/drawinteraction.js b/src/ol/interaction/drawinteraction.js index 352985e781..126bebf06d 100644 --- a/src/ol/interaction/drawinteraction.js +++ b/src/ol/interaction/drawinteraction.js @@ -1,4 +1,5 @@ goog.provide('ol.DrawEvent'); +goog.provide('ol.DrawEventType'); goog.provide('ol.interaction.Draw'); goog.require('goog.asserts'); diff --git a/test/spec/ol/interaction/drawinteraction.test.js b/test/spec/ol/interaction/drawinteraction.test.js index dfb2543763..6ecfa8a1d0 100644 --- a/test/spec/ol/interaction/drawinteraction.test.js +++ b/test/spec/ol/interaction/drawinteraction.test.js @@ -592,6 +592,7 @@ goog.require('goog.dispose'); goog.require('goog.events'); goog.require('goog.events.BrowserEvent'); goog.require('goog.style'); +goog.require('ol.DrawEventType'); goog.require('ol.Map'); goog.require('ol.MapBrowserPointerEvent'); goog.require('ol.View');