Use named exports from ol/index.js

This commit is contained in:
Tim Schaub
2017-12-12 10:24:58 -07:00
parent fce644556b
commit 87295a74dd
250 changed files with 874 additions and 887 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/**
* @module ol/style/Stroke
*/
import _ol_ from '../index.js';
import {getUid} from '../index.js';
/**
* @classdesc
@@ -257,7 +257,7 @@ _ol_style_Stroke_.prototype.getChecksum = function() {
if (typeof this.color_ === 'string') {
this.checksum_ += this.color_;
} else {
this.checksum_ += _ol_.getUid(this.color_).toString();
this.checksum_ += getUid(this.color_).toString();
}
} else {
this.checksum_ += '-';