mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
using the strict === comparison
This commit is contained in:
parent
171591a7a3
commit
9548ad6a27
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ function compareTiles( previousBest, tile ) {
|
|||
}
|
||||
|
||||
function drawTiles( tiledImage, lastDrawn ) {
|
||||
if (this.opacity == 0 || lastDrawn.length === 0) {
|
||||
if (this.opacity === 0 || lastDrawn.length === 0) {
|
||||
return;
|
||||
}
|
||||
var tile = lastDrawn[0];
|
||||
|
|
Loading…
Add table
Reference in a new issue