mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Bugfix for imagetilesource _freeupCanvasMemory
This commit is contained in:
parent
a27b511ad3
commit
af26fdbff1
@ -272,8 +272,10 @@
|
|||||||
*/
|
*/
|
||||||
_freeupCanvasMemory: function () {
|
_freeupCanvasMemory: function () {
|
||||||
for (var i = 0; i < this.levels.length; i++) {
|
for (var i = 0; i < this.levels.length; i++) {
|
||||||
this.levels[i].context2D.canvas.height = 0;
|
if(this.levels[i].context2D){
|
||||||
this.levels[i].context2D.canvas.width = 0;
|
this.levels[i].context2D.canvas.height = 0;
|
||||||
|
this.levels[i].context2D.canvas.width = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user