Rename _ol_control_Control_ to Control

This commit is contained in:
Tim Schaub
2017-12-14 12:57:24 -07:00
parent 46e5755f40
commit 681f1285f8
13 changed files with 49 additions and 49 deletions

View File

@@ -2,7 +2,7 @@
* @module ol/control/Rotate
*/
import _ol_control_Control_ from '../control/Control.js';
import Control from '../control/Control.js';
import _ol_css_ from '../css.js';
import {easeOut} from '../easing.js';
import _ol_events_ from '../events.js';
@@ -64,7 +64,7 @@ var _ol_control_Rotate_ = function(opt_options) {
this.callResetNorth_ = options.resetNorth ? options.resetNorth : undefined;
_ol_control_Control_.call(this, {
Control.call(this, {
element: element,
render: render,
target: options.target
@@ -94,7 +94,7 @@ var _ol_control_Rotate_ = function(opt_options) {
};
inherits(_ol_control_Rotate_, _ol_control_Control_);
inherits(_ol_control_Rotate_, Control);
/**