Rename _ol_events_Event_ to Event

This commit is contained in:
Marc Jansen
2017-12-15 09:37:05 +01:00
committed by Frederic Junod
parent 9622c64bc6
commit 1cc682e488
27 changed files with 85 additions and 85 deletions

View File

@@ -2,7 +2,7 @@
* @module ol/MapEvent
*/
import {inherits} from './index.js';
import _ol_events_Event_ from './events/Event.js';
import Event from './events/Event.js';
/**
* @classdesc
@@ -18,7 +18,7 @@ import _ol_events_Event_ from './events/Event.js';
*/
var _ol_MapEvent_ = function(type, map, opt_frameState) {
_ol_events_Event_.call(this, type);
Event.call(this, type);
/**
* The map where the event occurred.
@@ -36,5 +36,5 @@ var _ol_MapEvent_ = function(type, map, opt_frameState) {
};
inherits(_ol_MapEvent_, _ol_events_Event_);
inherits(_ol_MapEvent_, Event);
export default _ol_MapEvent_;