mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +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() {
|
function completionCallback() {
|
||||||
stopper--;
|
stopper--;
|
||||||
if (stopper > 0) {
|
if (stopper >= 0) {
|
||||||
tile.loading = false;
|
tile.loading = false;
|
||||||
tile.loaded = true;
|
tile.loaded = true;
|
||||||
tile.hasTransparency = _this.source.hasTransparency(
|
tile.hasTransparency = _this.source.hasTransparency(
|
||||||
|
Loading…
Reference in New Issue
Block a user