Consistently number

This commit is contained in:
Tim Schaub
2013-06-09 00:30:38 -06:00
parent 063b461ffd
commit d7e0d043f3

View File

@@ -747,7 +747,7 @@ ol.expression.Lexer.prototype.scanStringLiteral_ = function(quote) {
* @private
*/
ol.expression.Lexer.prototype.skipWhitespace_ = function() {
var code;
var code = NaN;
while (this.index_ < this.length_) {
code = this.getCurrentCharCode_();
if (this.isWhitespace_(code)) {