No longer inheriting from EventTarget

This commit is contained in:
ahocevar
2013-08-30 11:43:35 +02:00
parent 8a180e63b2
commit 6bb23cdda5
-4
View File
@@ -2,7 +2,6 @@
goog.provide('ol.interaction.Interaction'); goog.provide('ol.interaction.Interaction');
goog.require('goog.events.EventTarget');
goog.require('ol.MapBrowserEvent'); goog.require('ol.MapBrowserEvent');
goog.require('ol.animation.pan'); goog.require('ol.animation.pan');
goog.require('ol.animation.rotate'); goog.require('ol.animation.rotate');
@@ -13,12 +12,9 @@ goog.require('ol.easing');
/** /**
* @constructor * @constructor
* @extends {goog.events.EventTarget}
*/ */
ol.interaction.Interaction = function() { ol.interaction.Interaction = function() {
goog.base(this);
}; };
goog.inherits(ol.interaction.Interaction, goog.events.EventTarget);
/** /**