Rename _ol_MapEvent_ to MapEvent

This commit is contained in:
Marc Jansen
2017-12-15 09:39:41 +01:00
committed by Frederic Junod
parent 1cc682e488
commit a01793d3af
4 changed files with 16 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ import Event from './events/Event.js';
* @param {ol.PluggableMap} map Map.
* @param {?olx.FrameState=} opt_frameState Frame state.
*/
var _ol_MapEvent_ = function(type, map, opt_frameState) {
var MapEvent = function(type, map, opt_frameState) {
Event.call(this, type);
@@ -36,5 +36,5 @@ var _ol_MapEvent_ = function(type, map, opt_frameState) {
};
inherits(_ol_MapEvent_, Event);
export default _ol_MapEvent_;
inherits(MapEvent, Event);
export default MapEvent;