Rename ol/objectutil.js to ol/obj.js

This commit is contained in:
Tim Schaub
2016-08-06 13:21:38 -06:00
parent bbf91b3477
commit 1b8310a6fe
53 changed files with 161 additions and 161 deletions

View File

@@ -81,7 +81,7 @@ describe('ol.Feature', function() {
it('is empty by default', function() {
var feature = new ol.Feature();
var properties = feature.getProperties();
expect(ol.object.isEmpty(properties)).to.be(true);
expect(ol.obj.isEmpty(properties)).to.be(true);
});
});
@@ -464,5 +464,5 @@ describe('ol.Feature.createStyleFunction()', function() {
goog.require('ol.Feature');
goog.require('ol.geom.Point');
goog.require('ol.object');
goog.require('ol.obj');
goog.require('ol.style.Style');