Use ol.inherits instead of goog.inherits
This commit is contained in:
@@ -34,7 +34,7 @@ ol.source.State = {
|
||||
*/
|
||||
ol.source.Source = function(options) {
|
||||
|
||||
goog.base(this);
|
||||
ol.Object.call(this);
|
||||
|
||||
/**
|
||||
* @private
|
||||
@@ -68,7 +68,7 @@ ol.source.Source = function(options) {
|
||||
this.wrapX_ = options.wrapX !== undefined ? options.wrapX : false;
|
||||
|
||||
};
|
||||
goog.inherits(ol.source.Source, ol.Object);
|
||||
ol.inherits(ol.source.Source, ol.Object);
|
||||
|
||||
/**
|
||||
* Turns various ways of defining an attribution to an array of `ol.Attributions`.
|
||||
|
||||
Reference in New Issue
Block a user