mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
Typo in the stopping comparison condition.
This commit is contained in:
parent
947109718c
commit
81d86570da
1 changed files with 1 additions and 1 deletions
|
@ -1665,7 +1665,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||
|
||||
function completionCallback() {
|
||||
stopper--;
|
||||
if (stopper > 0) {
|
||||
if (stopper >= 0) {
|
||||
tile.loading = false;
|
||||
tile.loaded = true;
|
||||
tile.hasTransparency = _this.source.hasTransparency(
|
||||
|
|
Loading…
Add table
Reference in a new issue