Rename BrowserFeature to browserfeature

This commit is contained in:
Peter Robins
2014-08-15 13:32:02 +00:00
parent 0d20b337a0
commit e35531e7c6
22 changed files with 70 additions and 70 deletions

View File

@@ -5,7 +5,7 @@ goog.provide('ol.binary.IReader');
goog.require('goog.asserts');
goog.require('goog.userAgent');
goog.require('ol.BrowserFeature');
goog.require('ol.browserfeature');
@@ -29,7 +29,7 @@ ol.binary.Buffer = function(data) {
*/
ol.binary.Buffer.prototype.getReader = function() {
var data = this.data_;
if (ol.BrowserFeature.HAS_ARRAY_BUFFER) {
if (ol.browserfeature.HAS_ARRAY_BUFFER) {
var arrayBuffer;
if (data instanceof ArrayBuffer) {
arrayBuffer = data;