Merge pull request #9601 from bartvde/fix-addeventlistener2
Use global addEventListener in PluggableMap
This commit is contained in:
@@ -1057,7 +1057,7 @@ class PluggableMap extends BaseObject {
|
|||||||
|
|
||||||
if (!this.handleResize_) {
|
if (!this.handleResize_) {
|
||||||
this.handleResize_ = this.updateSize.bind(this);
|
this.handleResize_ = this.updateSize.bind(this);
|
||||||
addEventListener(EventType.RESIZE, this.handleResize_, false);
|
global.addEventListener(EventType.RESIZE, this.handleResize_, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user