From 10a0db14f7069e797d38d38e46d8e93f5c7d6b94 Mon Sep 17 00:00:00 2001 From: thatcher Date: Tue, 20 Mar 2012 03:38:27 -0400 Subject: [PATCH] thanks to josh1093 for finally translating the typo I couldn't make sense of when refactoring. 1 less TODO in the code base, thanks josh. --- build.properties | 2 +- openseadragon.js | 9 +++------ src/drawer.js | 7 ++----- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/build.properties b/build.properties index 233daf6a..51cce312 100644 --- a/build.properties +++ b/build.properties @@ -6,7 +6,7 @@ PROJECT: openseadragon BUILD_MAJOR: 0 BUILD_MINOR: 9 -BUILD_ID: 32 +BUILD_ID: 33 BUILD: ${PROJECT}.${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID} VERSION: ${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID} diff --git a/openseadragon.js b/openseadragon.js index 5026a275..8787e60b 100644 --- a/openseadragon.js +++ b/openseadragon.js @@ -1,5 +1,5 @@ /** - * @version OpenSeadragon 0.9.32 + * @version OpenSeadragon 0.9.33 * * @fileOverview *

@@ -6511,11 +6511,8 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le levelOpacity, currentTime ); - - } else if ( tile.Loading ) { - //TODO: .Loading is never defined... did they mean .loading? - // but they didnt do anything so what is this block if - // if it does nothing? + } else if ( tile.loading ) { + // the tile is already in the download queue } else { best = compareTiles( best, tile ); } diff --git a/src/drawer.js b/src/drawer.js index 24c44cc4..75817eff 100644 --- a/src/drawer.js +++ b/src/drawer.js @@ -573,11 +573,8 @@ function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, le levelOpacity, currentTime ); - - } else if ( tile.Loading ) { - //TODO: .Loading is never defined... did they mean .loading? - // but they didnt do anything so what is this block if - // if it does nothing? + } else if ( tile.loading ) { + // the tile is already in the download queue } else { best = compareTiles( best, tile ); }