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

@ -409,7 +409,7 @@
*
* @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
* not use CORS, and the canvas will be tainted.
*
@ -727,7 +727,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
tileSources: null,
tileHost: null,
initialPage: 0,
crossOriginPolicy: 'Anonymous',
crossOriginPolicy: false,
//PAN AND ZOOM SETTINGS AND CONSTRAINTS
panHorizontal: true,