configureFromObject uses @id

This commit is contained in:
Jon Stroop 2013-09-11 13:40:00 -04:00 committed by Mark Salsbery
parent e3c1007ae2
commit bccbf5ecf1

View File

@ -218,12 +218,7 @@ $.extend( $.IIIF11TileSource.prototype, $.TileSource.prototype, {
} }
*/ */
function configureFromObject( tileSource, configuration ){ function configureFromObject( tileSource, configuration ){
//the image_host property is not part of the iiif standard but is included here to configuration.tilesUrl = configuration["@id"];
//allow the info.json and info.xml specify a different server to load the
//images from so we can test the implementation.
if( configuration.image_host ){
configuration.tilesUrl = configuration.image_host;
}
return configuration; return configuration;
} }