Rename _ol_events_EventTarget_ to EventTarget

This commit is contained in:
Marc Jansen
2017-12-15 09:53:46 +01:00
committed by Frederic Junod
parent 5199371b9f
commit c620688758
16 changed files with 53 additions and 53 deletions

View File

@@ -4,7 +4,7 @@
import {inherits} from './index.js';
import _ol_TileState_ from './TileState.js';
import {easeIn} from './easing.js';
import _ol_events_EventTarget_ from './events/EventTarget.js';
import EventTarget from './events/EventTarget.js';
import EventType from './events/EventType.js';
/**
@@ -19,7 +19,7 @@ import EventType from './events/EventType.js';
* @param {olx.TileOptions=} opt_options Tile options.
*/
var _ol_Tile_ = function(tileCoord, state, opt_options) {
_ol_events_EventTarget_.call(this);
EventTarget.call(this);
var options = opt_options ? opt_options : {};
@@ -66,7 +66,7 @@ var _ol_Tile_ = function(tileCoord, state, opt_options) {
};
inherits(_ol_Tile_, _ol_events_EventTarget_);
inherits(_ol_Tile_, EventTarget);
/**