Merge pull request #377 from avandecreme/cors

Disable CORS by default.
This commit is contained in:
iangilman 2014-04-08 14:28:41 -07:00
commit 59a00ddfd1
2 changed files with 4 additions and 4 deletions

View File

@ -327,7 +327,7 @@ $.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;
} }

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,