Merge pull request #3209 from fredj/coding-style

Coding style fixes
This commit is contained in:
Frédéric Junod
2015-02-05 14:53:59 +01:00
23 changed files with 10 additions and 21 deletions
@@ -1,6 +1,5 @@
goog.provide('ol.interaction.DragRotateAndZoom');
goog.require('goog.asserts');
goog.require('goog.math.Vec2');
goog.require('ol');
goog.require('ol.ViewHint');
@@ -62,8 +61,7 @@ ol.interaction.DragRotateAndZoom = function(opt_options) {
this.lastScaleDelta_ = 0;
};
goog.inherits(ol.interaction.DragRotateAndZoom,
ol.interaction.Pointer);
goog.inherits(ol.interaction.DragRotateAndZoom, ol.interaction.Pointer);
/**
@@ -1,6 +1,5 @@
goog.provide('ol.interaction.DragRotate');
goog.require('goog.asserts');
goog.require('ol');
goog.require('ol.ViewHint');
goog.require('ol.events.ConditionType');
-1
View File
@@ -3,7 +3,6 @@
goog.provide('ol.interaction.Interaction');
goog.provide('ol.interaction.InteractionProperty');
goog.require('goog.asserts');
goog.require('ol.MapBrowserEvent');
goog.require('ol.Object');
goog.require('ol.animation');
@@ -1,6 +1,7 @@
goog.provide('ol.interaction.PinchRotate');
goog.require('goog.asserts');
goog.require('goog.functions');
goog.require('goog.style');
goog.require('ol');
goog.require('ol.Coordinate');
@@ -1,6 +1,7 @@
goog.provide('ol.interaction.PinchZoom');
goog.require('goog.asserts');
goog.require('goog.functions');
goog.require('goog.style');
goog.require('ol.Coordinate');
goog.require('ol.ViewHint');
-1
View File
@@ -1,6 +1,5 @@
goog.provide('ol.interaction.Pointer');
goog.require('goog.asserts');
goog.require('goog.functions');
goog.require('goog.object');
goog.require('ol.MapBrowserEvent.EventType');