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

@@ -9,7 +9,7 @@ import _ol_ObjectEventType_ from '../ObjectEventType.js';
import _ol_array_ from '../array.js';
import _ol_asserts_ from '../asserts.js';
import _ol_events_ from '../events.js';
import _ol_events_Event_ from '../events/Event.js';
import Event from '../events/Event.js';
import _ol_events_EventType_ from '../events/EventType.js';
import {containsExtent, equals} from '../extent.js';
import _ol_featureloader_ from '../featureloader.js';
@@ -866,7 +866,7 @@ _ol_source_Vector_.prototype.setLoader = function(loader) {
*/
_ol_source_Vector_.Event = function(type, opt_feature) {
_ol_events_Event_.call(this, type);
Event.call(this, type);
/**
* The feature being added or removed.
@@ -876,5 +876,5 @@ _ol_source_Vector_.Event = function(type, opt_feature) {
this.feature = opt_feature;
};
inherits(_ol_source_Vector_.Event, _ol_events_Event_);
inherits(_ol_source_Vector_.Event, Event);
export default _ol_source_Vector_;