mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 12:46:09 +03:00
remove resize handler when webgl drawer is destroyed
This commit is contained in:
parent
d97ba581b0
commit
f3b92e0562
@ -160,6 +160,7 @@
|
||||
// unbind our event listeners from the viewer
|
||||
this.viewer.removeHandler("tile-ready", this._boundToTileReady);
|
||||
this.viewer.removeHandler("image-unloaded", this._boundToImageUnloaded);
|
||||
this.viewer.removeHandler("resize", this._resizeHandler);
|
||||
|
||||
// set our webgl context reference to null to enable garbage collection
|
||||
this._gl = null;
|
||||
@ -839,8 +840,7 @@
|
||||
|
||||
this._gl = this._renderingCanvas.getContext('webgl');
|
||||
|
||||
//make the additional canvas elements mirror size changes to the output canvas
|
||||
this.viewer.addHandler("resize", function(){
|
||||
this._resizeHandler = function(){
|
||||
|
||||
if(_this._outputCanvas !== _this.viewer.drawer.canvas){
|
||||
_this._outputCanvas.style.width = _this.viewer.drawer.canvas.clientWidth + 'px';
|
||||
@ -861,7 +861,10 @@
|
||||
|
||||
// important - update the size of the rendering viewport!
|
||||
_this._resizeRenderer();
|
||||
});
|
||||
};
|
||||
|
||||
//make the additional canvas elements mirror size changes to the output canvas
|
||||
this.viewer.addHandler("resize", this._resizeHandler);
|
||||
}
|
||||
|
||||
// private
|
||||
|
Loading…
Reference in New Issue
Block a user