mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Typo in the stopping comparison condition.
This commit is contained in:
parent
947109718c
commit
81d86570da
@ -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…
Reference in New Issue
Block a user