Thanks to josh1093 @ github for this one. see ticket https://github.com/thatcher/openseadragon/issues/1

This commit is contained in:
thatcher 2012-02-22 23:43:00 -05:00
parent 7255b0c594
commit 3619ff7930
3 changed files with 2 additions and 16 deletions

View File

@ -6,7 +6,7 @@
PROJECT: openseadragon PROJECT: openseadragon
BUILD_MAJOR: 0 BUILD_MAJOR: 0
BUILD_MINOR: 9 BUILD_MINOR: 9
BUILD_ID: 10 BUILD_ID: 11
BUILD: ${PROJECT}.${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID} BUILD: ${PROJECT}.${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID}
VERSION: ${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID} VERSION: ${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID}

View File

@ -1,5 +1,5 @@
/** /**
* @version OpenSeadragon 0.9.10 * @version OpenSeadragon 0.9.11
* *
* @fileOverview * @fileOverview
* <h2> * <h2>
@ -2822,13 +2822,6 @@ $.extend( $.Viewer.prototype, $.EventHandler.prototype, {
}, 2000); }, 2000);
this._lastOpenEndTime = +new Date(); this._lastOpenEndTime = +new Date();
if ( this._lastOpenStartTime < viewer._lastOpenStartTime ) {
$.console.log( "Ignoring out-of-date open." );
this.raiseEvent( "ignore" );
return;
}
this.canvas.innerHTML = ""; this.canvas.innerHTML = "";
this._prevContainerSize = $.getElementSize( this.container ); this._prevContainerSize = $.getElementSize( this.container );

View File

@ -412,13 +412,6 @@ $.extend( $.Viewer.prototype, $.EventHandler.prototype, {
}, 2000); }, 2000);
this._lastOpenEndTime = +new Date(); this._lastOpenEndTime = +new Date();
if ( this._lastOpenStartTime < viewer._lastOpenStartTime ) {
$.console.log( "Ignoring out-of-date open." );
this.raiseEvent( "ignore" );
return;
}
this.canvas.innerHTML = ""; this.canvas.innerHTML = "";
this._prevContainerSize = $.getElementSize( this.container ); this._prevContainerSize = $.getElementSize( this.container );