From 93976a5d9f5029cea2c1b299ce2fe3f2bfe05923 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Wed, 30 Jan 2013 23:18:42 +0100 Subject: [PATCH] Fix requires relating to recent commits --- src/ol/interaction/dragpaninteraction.js | 3 +++ src/ol/kinetic.js | 4 ++-- src/ol/mapbrowserevent.js | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ol/interaction/dragpaninteraction.js b/src/ol/interaction/dragpaninteraction.js index 5bfbbf3bcb..6cca9a096d 100644 --- a/src/ol/interaction/dragpaninteraction.js +++ b/src/ol/interaction/dragpaninteraction.js @@ -4,6 +4,9 @@ goog.provide('ol.interaction.DragPan'); goog.require('goog.asserts'); goog.require('ol.Coordinate'); +goog.require('ol.Kinetic'); +goog.require('ol.Pixel'); +goog.require('ol.PreRenderFunction'); goog.require('ol.View2D'); goog.require('ol.ViewHint'); goog.require('ol.interaction.ConditionType'); diff --git a/src/ol/kinetic.js b/src/ol/kinetic.js index 44aabe850b..5be0754ead 100644 --- a/src/ol/kinetic.js +++ b/src/ol/kinetic.js @@ -1,8 +1,8 @@ goog.provide('ol.Kinetic'); -goog.require('goog.array'); -goog.require('ol.Pixel'); +goog.require('ol.Coordinate'); +goog.require('ol.PreRenderFunction'); goog.require('ol.animation'); diff --git a/src/ol/mapbrowserevent.js b/src/ol/mapbrowserevent.js index a6b0f20be7..079f43b47b 100644 --- a/src/ol/mapbrowserevent.js +++ b/src/ol/mapbrowserevent.js @@ -10,6 +10,7 @@ goog.require('goog.events.EventType'); goog.require('goog.style'); goog.require('ol.BrowserFeature'); goog.require('ol.Coordinate'); +goog.require('ol.FrameState'); goog.require('ol.MapEvent'); goog.require('ol.Pixel');