Disable CORS by default.

This commit is contained in:
Antoine Vandecreme 2014-04-07 16:59:48 -04:00
parent f18909d0ec
commit dbe87d659e
2 changed files with 4 additions and 4 deletions

View File

@ -327,8 +327,8 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
image = new Image(); image = new Image();
if (_this.crossOriginPolicy !== false) { if ( _this.crossOriginPolicy !== false ) {
image.crossOrigin = _this.crossOriginPolicy; image.crossOrigin = _this.crossOriginPolicy;
} }
complete = function( imagesrc, resultingImage ){ complete = function( imagesrc, resultingImage ){

View File

@ -409,7 +409,7 @@
* *
* @property {Number} [collectionTileSize=800] * @property {Number} [collectionTileSize=800]
* *
* @property {String} [crossOriginPolicy='Anonymous'] * @property {String|Boolean} [crossOriginPolicy=false]
* Valid values are 'Anonymous', 'use-credentials', and false. If false, canvas requests will * Valid values are 'Anonymous', 'use-credentials', and false. If false, canvas requests will
* not use CORS, and the canvas will be tainted. * not use CORS, and the canvas will be tainted.
* *
@ -727,7 +727,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
tileSources: null, tileSources: null,
tileHost: null, tileHost: null,
initialPage: 0, initialPage: 0,
crossOriginPolicy: 'Anonymous', crossOriginPolicy: false,
//PAN AND ZOOM SETTINGS AND CONSTRAINTS //PAN AND ZOOM SETTINGS AND CONSTRAINTS
panHorizontal: true, panHorizontal: true,