Named exports from ol/easing

This commit is contained in:
Frederic Junod
2017-12-14 08:42:36 +01:00
parent e2c9175f6d
commit 061e0b6618
12 changed files with 44 additions and 46 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
* @module ol/interaction/DragZoom
*/
import {inherits} from '../index.js';
import _ol_easing_ from '../easing.js';
import {easeOut} from '../easing.js';
import _ol_events_condition_ from '../events/condition.js';
import {createOrUpdateFromCoordinates, getBottomLeft, getCenter, getTopRight, scaleFromCenter} from '../extent.js';
import _ol_interaction_DragBox_ from '../interaction/DragBox.js';
@@ -82,7 +82,7 @@ _ol_interaction_DragZoom_.prototype.onBoxEnd = function() {
resolution: resolution,
center: center,
duration: this.duration_,
easing: _ol_easing_.easeOut
easing: easeOut
});
};