Merge pull request #5453 from ahocevar/mapbrowserpointerevent

Reference ol.MapBrowserEvent instead of ol.MapBrowserPointerEvent
This commit is contained in:
Andreas Hocevar
2016-06-13 14:01:49 +02:00
committed by GitHub
4 changed files with 12 additions and 6 deletions

View File

@@ -73,11 +73,11 @@ ol.interaction.ModifyEvent = function(type, features, mapBrowserPointerEvent) {
this.features = features;
/**
* Associated {@link ol.MapBrowserPointerEvent}.
* @type {ol.MapBrowserPointerEvent}
* Associated {@link ol.MapBrowserEvent}.
* @type {ol.MapBrowserEvent}
* @api
*/
this.mapBrowserPointerEvent = mapBrowserPointerEvent;
this.mapBrowserEvent = mapBrowserPointerEvent;
};
ol.inherits(ol.interaction.ModifyEvent, ol.events.Event);