mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Finish on image job now accepts request argument. Further comments cleanup. Deprecation message for image property in tile loaded event. Removal of downloadTileFinish(). More robust aborting that cleans up an image properties when aborted (not done until now).
This commit is contained in:
parent
150e750ece
commit
8a2c998cb9
@ -44,7 +44,7 @@
|
|||||||
* @param {String} [options.ajaxHeaders] - Headers to add to the image request if using AJAX.
|
* @param {String} [options.ajaxHeaders] - Headers to add to the image request if using AJAX.
|
||||||
* @param {String} [options.crossOriginPolicy] - CORS policy to use for downloads
|
* @param {String} [options.crossOriginPolicy] - CORS policy to use for downloads
|
||||||
* @param {String} [options.postData] - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
* @param {String} [options.postData] - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData) or null
|
* see TileSource::getPostData) or null
|
||||||
* @param {Function} [options.callback] - Called once image has been downloaded.
|
* @param {Function} [options.callback] - Called once image has been downloaded.
|
||||||
* @param {Function} [options.abort] - Called when this image job is aborted.
|
* @param {Function} [options.abort] - Called when this image job is aborted.
|
||||||
* @param {Number} [options.timeout] - The max number of milliseconds that this image job may take to complete.
|
* @param {Number} [options.timeout] - The max number of milliseconds that this image job may take to complete.
|
||||||
@ -65,15 +65,21 @@ $.ImageJob = function(options) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* User workspace to populate with helper variables
|
* User workspace to populate with helper variables
|
||||||
* @member {*} user data, for people to append their data
|
* @member {*} userData to append custom data and avoid namespace collision
|
||||||
* @memberof OpenSeadragon.ImageJob#
|
* @memberof OpenSeadragon.ImageJob#
|
||||||
*/
|
*/
|
||||||
this.userData = {};
|
this.userData = {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Error message holder
|
||||||
|
* @member {string} error message
|
||||||
|
* @memberof OpenSeadragon.ImageJob#
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
this.errorMsg = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
$.ImageJob.prototype = {
|
$.ImageJob.prototype = {
|
||||||
errorMsg: null,
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Starts the image job.
|
* Starts the image job.
|
||||||
* @method
|
* @method
|
||||||
@ -83,7 +89,7 @@ $.ImageJob.prototype = {
|
|||||||
var selfAbort = this.abort;
|
var selfAbort = this.abort;
|
||||||
|
|
||||||
this.jobId = window.setTimeout(function () {
|
this.jobId = window.setTimeout(function () {
|
||||||
self.finish(false, "Image load exceeded timeout (" + self.timeout + " ms)");
|
self.finish(null, "Image load exceeded timeout (" + self.timeout + " ms)");
|
||||||
}, this.timeout);
|
}, this.timeout);
|
||||||
|
|
||||||
this.abort = function() {
|
this.abort = function() {
|
||||||
@ -96,9 +102,16 @@ $.ImageJob.prototype = {
|
|||||||
this.source.downloadTileStart(this);
|
this.source.downloadTileStart(this);
|
||||||
},
|
},
|
||||||
|
|
||||||
finish: function(successful, errorMessage) {
|
/**
|
||||||
|
* Finish this job.
|
||||||
|
* @param {*} data data that has been downloaded
|
||||||
|
* @param {XMLHttpRequest} request reference to the request if used
|
||||||
|
* @param {string} errorMessage description upon failure
|
||||||
|
*/
|
||||||
|
finish: function(data, request, errorMessage ) {
|
||||||
|
this.data = data;
|
||||||
|
this.request = request;
|
||||||
this.errorMsg = errorMessage;
|
this.errorMsg = errorMessage;
|
||||||
this.data = this.source.downloadTileFinish(this, successful);
|
|
||||||
|
|
||||||
if (this.jobId) {
|
if (this.jobId) {
|
||||||
window.clearTimeout(this.jobId);
|
window.clearTimeout(this.jobId);
|
||||||
@ -141,7 +154,7 @@ $.ImageLoader.prototype = {
|
|||||||
* @param {String} [options.ajaxHeaders] - Headers to add to the image request if using AJAX.
|
* @param {String} [options.ajaxHeaders] - Headers to add to the image request if using AJAX.
|
||||||
* @param {String|Boolean} [options.crossOriginPolicy] - CORS policy to use for downloads
|
* @param {String|Boolean} [options.crossOriginPolicy] - CORS policy to use for downloads
|
||||||
* @param {String} [options.postData] - POST parameters (usually but not necessarily in k=v&k2=v2... form,
|
* @param {String} [options.postData] - POST parameters (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData) or null
|
* see TileSource::getPostData) or null
|
||||||
* @param {Boolean} [options.ajaxWithCredentials] - Whether to set withCredentials on AJAX
|
* @param {Boolean} [options.ajaxWithCredentials] - Whether to set withCredentials on AJAX
|
||||||
* requests.
|
* requests.
|
||||||
* @param {Function} [options.callback] - Called once image has been downloaded.
|
* @param {Function} [options.callback] - Called once image has been downloaded.
|
||||||
@ -154,8 +167,7 @@ $.ImageLoader.prototype = {
|
|||||||
var implementation = $.TileSource.prototype;
|
var implementation = $.TileSource.prototype;
|
||||||
options.source = {
|
options.source = {
|
||||||
downloadTileStart: implementation.downloadTileStart,
|
downloadTileStart: implementation.downloadTileStart,
|
||||||
downloadTileAbort: implementation.downloadTileAbort,
|
downloadTileAbort: implementation.downloadTileAbort
|
||||||
downloadTileFinish: implementation.downloadTileFinish
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2321,7 +2321,7 @@ function OpenSeadragon( options ){
|
|||||||
* @param {Object} options.headers - headers to add to the AJAX request
|
* @param {Object} options.headers - headers to add to the AJAX request
|
||||||
* @param {String} options.responseType - the response type of the the AJAX request
|
* @param {String} options.responseType - the response type of the the AJAX request
|
||||||
* @param {String} options.postData - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
* @param {String} options.postData - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData), GET method used if null
|
* see TileSource::getPostData), GET method used if null
|
||||||
* @param {Boolean} [options.withCredentials=false] - whether to set the XHR's withCredentials
|
* @param {Boolean} [options.withCredentials=false] - whether to set the XHR's withCredentials
|
||||||
* @throws {Error}
|
* @throws {Error}
|
||||||
* @returns {XMLHttpRequest}
|
* @returns {XMLHttpRequest}
|
||||||
|
28
src/tile.js
28
src/tile.js
@ -53,7 +53,7 @@
|
|||||||
* drawing operation, in pixels. Note that this only works when drawing with canvas; when drawing
|
* drawing operation, in pixels. Note that this only works when drawing with canvas; when drawing
|
||||||
* with HTML the entire tile is always used.
|
* with HTML the entire tile is always used.
|
||||||
* @param {String} postData HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
* @param {String} postData HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData) or null
|
* see TileSource::getPostData) or null
|
||||||
* @param {String} cacheKey key to act as a tile cache, must be unique for tiles with unique image data
|
* @param {String} cacheKey key to act as a tile cache, must be unique for tiles with unique image data
|
||||||
*/
|
*/
|
||||||
$.Tile = function(level, x, y, bounds, exists, url, context2D, loadWithAjax, ajaxHeaders, sourceBounds, postData, cacheKey) {
|
$.Tile = function(level, x, y, bounds, exists, url, context2D, loadWithAjax, ajaxHeaders, sourceBounds, postData, cacheKey) {
|
||||||
@ -104,7 +104,7 @@ $.Tile = function(level, x, y, bounds, exists, url, context2D, loadWithAjax, aja
|
|||||||
* Post parameters for this tile. For example, it can be an URL-encoded string
|
* Post parameters for this tile. For example, it can be an URL-encoded string
|
||||||
* in k1=v1&k2=v2... format, or a JSON, or a FormData instance... or null if no POST request used
|
* in k1=v1&k2=v2... format, or a JSON, or a FormData instance... or null if no POST request used
|
||||||
* @member {String} postData HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
* @member {String} postData HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData) or null
|
* see TileSource::getPostData) or null
|
||||||
* @memberof OpenSeadragon.Tile#
|
* @memberof OpenSeadragon.Tile#
|
||||||
*/
|
*/
|
||||||
this.postData = postData;
|
this.postData = postData;
|
||||||
@ -218,7 +218,7 @@ $.Tile = function(level, x, y, bounds, exists, url, context2D, loadWithAjax, aja
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The transparency indicator of this tile.
|
* The transparency indicator of this tile.
|
||||||
* @member {Boolean} true if tile contains transparency for correct rendering
|
* @member {Boolean} hasTransparency true if tile contains transparency for correct rendering
|
||||||
* @memberof OpenSeadragon.Tile#
|
* @memberof OpenSeadragon.Tile#
|
||||||
*/
|
*/
|
||||||
this.hasTransparency = false;
|
this.hasTransparency = false;
|
||||||
@ -297,8 +297,8 @@ $.Tile.prototype = {
|
|||||||
// content during animation of the container size.
|
// content during animation of the container size.
|
||||||
|
|
||||||
if ( !this.element ) {
|
if ( !this.element ) {
|
||||||
var image = this.image;
|
var image = this.getImage();
|
||||||
if (!this.image) {
|
if (!image) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -334,20 +334,28 @@ $.Tile.prototype = {
|
|||||||
* The Image object for this tile.
|
* The Image object for this tile.
|
||||||
* @member {Object} image
|
* @member {Object} image
|
||||||
* @memberof OpenSeadragon.Tile#
|
* @memberof OpenSeadragon.Tile#
|
||||||
|
* @deprecated
|
||||||
* @return {Image}
|
* @return {Image}
|
||||||
*/
|
*/
|
||||||
get image() {
|
get image() {
|
||||||
|
$.console.error("[Tile.image] property has been deprecated. Use [Tile.prototype.getImage] instead.");
|
||||||
|
return this.getImage();
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the Image object for this tile.
|
||||||
|
* @return {Image}
|
||||||
|
*/
|
||||||
|
getImage: function() {
|
||||||
return this.cacheImageRecord.getImage();
|
return this.cacheImageRecord.getImage();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The CanvasRenderingContext2D instance for tile image data drawn
|
* Get the CanvasRenderingContext2D instance for tile image data drawn
|
||||||
* onto Canvas if enabled and available
|
* onto Canvas if enabled and available
|
||||||
* @member {CanvasRenderingContext2D} canvasContext
|
|
||||||
* @memberof OpenSeadragon.Tile#
|
|
||||||
* @return {CanvasRenderingContext2D}
|
* @return {CanvasRenderingContext2D}
|
||||||
*/
|
*/
|
||||||
get canvasContext() {
|
getCanvasContext: function() {
|
||||||
return this.context2D || this.cacheImageRecord.getRenderedContext();
|
return this.context2D || this.cacheImageRecord.getRenderedContext();
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -378,7 +386,7 @@ $.Tile.prototype = {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
rendered = this.canvasContext;
|
rendered = this.getCanvasContext();
|
||||||
|
|
||||||
if ( !this.loaded || !rendered ){
|
if ( !this.loaded || !rendered ){
|
||||||
$.console.warn(
|
$.console.warn(
|
||||||
|
@ -1649,7 +1649,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||||||
* @private
|
* @private
|
||||||
* @inner
|
* @inner
|
||||||
* @param {OpenSeadragon.Tile} tile
|
* @param {OpenSeadragon.Tile} tile
|
||||||
* @param {*} data image data, the output of TileSource.prototype.downloadTileFinish(), by default Image object
|
* @param {*} data image data, the data sent to ImageJob.prototype.finish(), by default an Image object
|
||||||
* @param {Number || undefined} cutoff
|
* @param {Number || undefined} cutoff
|
||||||
* @param {XMLHttpRequest || undefined} tileRequest
|
* @param {XMLHttpRequest || undefined} tileRequest
|
||||||
*/
|
*/
|
||||||
@ -1690,8 +1690,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||||||
* @memberof OpenSeadragon.Viewer
|
* @memberof OpenSeadragon.Viewer
|
||||||
* @type {object}
|
* @type {object}
|
||||||
* @property {Image || *} image - The image (data) of the tile. Deprecated.
|
* @property {Image || *} image - The image (data) of the tile. Deprecated.
|
||||||
* @property {*} data - image data, the output of TileSource.prototype.downloadTileFinish(),
|
* @property {*} data image data, the data sent to ImageJob.prototype.finish(), by default an Image object
|
||||||
* by default Image object
|
|
||||||
* @property {OpenSeadragon.TiledImage} tiledImage - The tiled image of the loaded tile.
|
* @property {OpenSeadragon.TiledImage} tiledImage - The tiled image of the loaded tile.
|
||||||
* @property {OpenSeadragon.Tile} tile - The tile which has been loaded.
|
* @property {OpenSeadragon.Tile} tile - The tile which has been loaded.
|
||||||
* @property {XMLHttpRequest} tileRequest - The AJAX request that loaded this tile (if applicable).
|
* @property {XMLHttpRequest} tileRequest - The AJAX request that loaded this tile (if applicable).
|
||||||
@ -1705,7 +1704,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||||||
tiledImage: this,
|
tiledImage: this,
|
||||||
tileRequest: tileRequest,
|
tileRequest: tileRequest,
|
||||||
get image() {
|
get image() {
|
||||||
$.console.error("[tile-loaded] event property 'image' has been deprecated and will be removed.");
|
$.console.error("[tile-loaded] event 'image' has been deprecated. Use 'data' property instead.");
|
||||||
return data;
|
return data;
|
||||||
},
|
},
|
||||||
data: data,
|
data: data,
|
||||||
|
@ -553,7 +553,7 @@ $.TileSource.prototype = {
|
|||||||
* @property {String} message
|
* @property {String} message
|
||||||
* @property {String} source
|
* @property {String} source
|
||||||
* @property {String} postData - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
* @property {String} postData - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData) or null
|
* see TileSource::getPostData) or null
|
||||||
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
||||||
*/
|
*/
|
||||||
_this.raiseEvent( 'open-failed', {
|
_this.raiseEvent( 'open-failed', {
|
||||||
@ -721,31 +721,47 @@ $.TileSource.prototype = {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Download tile data.
|
* Download tile data.
|
||||||
* Note that if you override any of downloadTile*() functions, you should override all of them.
|
* Note that if you override this function, you should override also downloadTileAbort().
|
||||||
* @param {ImageJob} context job context that you have to call finish(...) on.
|
* @param {ImageJob} context job context that you have to call finish(...) on.
|
||||||
* @param {String} [context.src] - URL of image to download.
|
* @param {String} [context.src] - URL of image to download.
|
||||||
* @param {String} [context.loadWithAjax] - Whether to load this image with AJAX.
|
* @param {String} [context.loadWithAjax] - Whether to load this image with AJAX.
|
||||||
* @param {String} [context.ajaxHeaders] - Headers to add to the image request if using AJAX.
|
* @param {String} [context.ajaxHeaders] - Headers to add to the image request if using AJAX.
|
||||||
* @param {String} [context.crossOriginPolicy] - CORS policy to use for downloads
|
* @param {String} [context.crossOriginPolicy] - CORS policy to use for downloads
|
||||||
* @param {String} [context.postData] - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
* @param {String} [context.postData] - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
|
||||||
* see TileSrouce::getPostData) or null
|
* see TileSource::getPostData) or null
|
||||||
*
|
|
||||||
* @param {*} [context.userData] - Empty object to attach your own data and helper variables to.
|
* @param {*} [context.userData] - Empty object to attach your own data and helper variables to.
|
||||||
* @param {Function} [context.callback] - Called automatically once image has been downloaded (triggered by finish).
|
|
||||||
* @param {Function} [context.finish] - Should be called unless abort() was executed, e.g. on all occasions,
|
* @param {Function} [context.finish] - Should be called unless abort() was executed, e.g. on all occasions,
|
||||||
* be it successful or unsuccessful request.
|
* be it successful or unsuccessful request.
|
||||||
* @param {Function} [context.abort] - Called when this image job is aborted.
|
* Usage: context.finish(data, request, errMessage). Pass the downloaded data object or null upon failure.
|
||||||
* @param {Number} [context.timeout] - The max number of milliseconds that this image job may take to complete.
|
* Add also reference to an ajax request if used. Provide error message in case of failure.
|
||||||
|
* @param {Function} [context.abort] - Called automatically when the job times out.
|
||||||
|
* Usage: context.abort().
|
||||||
|
* @param {Function} [context.callback] @private - Called automatically once image has been downloaded
|
||||||
|
* (triggered by finish).
|
||||||
|
* @param {Number} [context.timeout] @private - The max number of milliseconds that
|
||||||
|
* this image job may take to complete.
|
||||||
|
* @param {string} [context.errorMsg] @private - The final error message, default null (set by finish).
|
||||||
*/
|
*/
|
||||||
downloadTileStart: function (context) {
|
downloadTileStart: function (context) {
|
||||||
var dataStore = context.userData;
|
var dataStore = context.userData,
|
||||||
dataStore.image = new Image();
|
image = new Image();
|
||||||
|
|
||||||
dataStore.image.onload = function(){
|
dataStore.image = image;
|
||||||
context.finish(true);
|
dataStore.request = null;
|
||||||
|
|
||||||
|
var finish = function(error) {
|
||||||
|
if (!image) {
|
||||||
|
context.finish(null, dataStore.request, "Image load failed: undefined Image instance.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
image.onload = image.onerror = image.onabort = null;
|
||||||
|
context.finish(error ? null : image, dataStore.request, error);
|
||||||
};
|
};
|
||||||
dataStore.image.onabort = dataStore.image.onerror = function() {
|
image.onload = function () {
|
||||||
context.finish(false, "Image load aborted");
|
finish();
|
||||||
|
};
|
||||||
|
image.onabort = image.onerror = function() {
|
||||||
|
finish("Image load aborted.");
|
||||||
};
|
};
|
||||||
|
|
||||||
// Load the tile with an AJAX request if the loadWithAjax option is
|
// Load the tile with an AJAX request if the loadWithAjax option is
|
||||||
@ -779,53 +795,39 @@ $.TileSource.prototype = {
|
|||||||
}
|
}
|
||||||
// If the blob is empty for some reason consider the image load a failure.
|
// If the blob is empty for some reason consider the image load a failure.
|
||||||
if (blb.size === 0) {
|
if (blb.size === 0) {
|
||||||
context.finish(false, "Empty image response.");
|
finish("Empty image response.");
|
||||||
} else {
|
} else {
|
||||||
// Create a URL for the blob data and make it the source of the image object.
|
// Create a URL for the blob data and make it the source of the image object.
|
||||||
// This will still trigger Image.onload to indicate a successful tile load.
|
// This will still trigger Image.onload to indicate a successful tile load.
|
||||||
dataStore.image.src = (window.URL || window.webkitURL).createObjectURL(blb);
|
image.src = (window.URL || window.webkitURL).createObjectURL(blb);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
error: function(request) {
|
error: function(request) {
|
||||||
context.finish(false, "Image load aborted - XHR error");
|
finish("Image load aborted - XHR error");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if (context.crossOriginPolicy !== false) {
|
if (context.crossOriginPolicy !== false) {
|
||||||
dataStore.image.crossOrigin = context.crossOriginPolicy;
|
image.crossOrigin = context.crossOriginPolicy;
|
||||||
}
|
}
|
||||||
dataStore.image.src = context.src;
|
image.src = context.src;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provide means of aborting the execution.
|
* Provide means of aborting the execution.
|
||||||
* Note that if you override any of downloadTile*() functions, you should override all of them.
|
* Note that if you override this function, you should override also downloadTileStart().
|
||||||
* @param {ImageJob} context job, the same object as with downloadTileStart(..)
|
* @param {ImageJob} context job, the same object as with downloadTileStart(..)
|
||||||
* @param {*} [context.userData] - Empty object to attach (and mainly read) your own data.
|
* @param {*} [context.userData] - Empty object to attach (and mainly read) your own data.
|
||||||
*/
|
*/
|
||||||
downloadTileAbort: function (context) {
|
downloadTileAbort: function (context) {
|
||||||
context.userData.request.abort();
|
if (context.userData.request) {
|
||||||
},
|
context.userData.request.abort();
|
||||||
|
}
|
||||||
/**
|
var image = context.userData.image;
|
||||||
* Note that if you override any of downloadTile*() functions, you should override all of them,
|
if (context.userData.image) {
|
||||||
* unless you just want to for example here change the format of the data.
|
image.onload = image.onerror = image.onabort = null;
|
||||||
* Note that unless this function returns Image object, you should also override *TileCache() functions
|
|
||||||
* to re-define how the data is being cached.
|
|
||||||
* @param {ImageJob} context job, the same object as with downloadTileStart(..)
|
|
||||||
* @param {*} [context.userData] - Empty object to attach (and mainly read) your own data.
|
|
||||||
* @param successful true if successful
|
|
||||||
* @return {* || null} tile data in a format you want to have in the system, or null to indicate missing data
|
|
||||||
* also for example, a default value (white image? error image?) can be returned if the request was unsuccessful
|
|
||||||
*/
|
|
||||||
downloadTileFinish: function (context, successful) {
|
|
||||||
var image = context.userData.image;
|
|
||||||
if (!image) {
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
image.onload = image.onerror = image.onabort = null;
|
|
||||||
return successful ? image : null;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -835,7 +837,7 @@ $.TileSource.prototype = {
|
|||||||
*
|
*
|
||||||
* Note that if you override any of *TileCache() functions, you should override all of them.
|
* Note that if you override any of *TileCache() functions, you should override all of them.
|
||||||
* @param {object} cacheObject context cache object
|
* @param {object} cacheObject context cache object
|
||||||
* @param {*} data the result of downloadTileFinish() function
|
* @param {*} data image data, the data sent to ImageJob.prototype.finish(), by default an Image object
|
||||||
* @param {Tile} tile instance the cache was created with
|
* @param {Tile} tile instance the cache was created with
|
||||||
*/
|
*/
|
||||||
createTileCache: function(cacheObject, data, tile) {
|
createTileCache: function(cacheObject, data, tile) {
|
||||||
|
@ -305,7 +305,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// The Wikipedia logo has CORS enabled
|
// The Wikipedia logo has CORS enabled
|
||||||
var corsImg = 'http://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png';
|
var corsImg = 'https://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png';
|
||||||
|
|
||||||
QUnit.test( 'CrossOriginPolicyMissing', function (assert) {
|
QUnit.test( 'CrossOriginPolicyMissing', function (assert) {
|
||||||
var done = assert.async();
|
var done = assert.async();
|
||||||
|
Loading…
Reference in New Issue
Block a user