Fix typo in where-function

I wonder how this has ever worked before. Black magic.
This commit is contained in:
Marc Jansen
2017-08-19 20:33:02 +02:00
parent 33adabf168
commit 27baa3d698

View File

@@ -502,7 +502,7 @@ goog.require('ol.renderer.webgl.Map');
} }
return { return {
describe: features[key] ? global.describe : global.xdescribe, describe: features[key] ? global.describe : global.xdescribe,
it: features[key] ? global.id : global.xit it: features[key] ? global.it : global.xit
}; };
}; };