Rename _ol_source_State_ to SourceState

This commit is contained in:
Frederic Junod
2017-12-19 08:33:14 +01:00
parent 003c7bb209
commit d0728a5e65
12 changed files with 35 additions and 35 deletions

View File

@@ -4,7 +4,7 @@
import {inherits, nullFunction} from '../index.js';
import _ol_Object_ from '../Object.js';
import {get as getProjection} from '../proj.js';
import _ol_source_State_ from '../source/State.js';
import SourceState from '../source/State.js';
/**
@@ -42,7 +42,7 @@ var _ol_source_Source_ = function(options) {
* @type {ol.source.State}
*/
this.state_ = options.state !== undefined ?
options.state : _ol_source_State_.READY;
options.state : SourceState.READY;
/**
* @private