Interaction in ol.interaction namespace.

This commit is contained in:
Tim Schaub
2012-09-24 17:18:21 +02:00
parent ed754fbfdf
commit d51cd1c395
8 changed files with 27 additions and 27 deletions
+2 -2
View File
@@ -9,13 +9,13 @@ goog.require('ol.interaction.Constraints');
/**
* @constructor
* @extends {ol.Interaction}
* @extends {ol.interaction.Interaction}
* @param {ol.interaction.Constraints} constraints Constraints.
*/
ol.interaction.MouseWheelZoom = function(constraints) {
goog.base(this, constraints);
};
goog.inherits(ol.interaction.MouseWheelZoom, ol.Interaction);
goog.inherits(ol.interaction.MouseWheelZoom, ol.interaction.Interaction);
/**