mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Looser check for DZI schema
This commit is contained in:
parent
356ea78b26
commit
65b41c3f6e
@ -113,8 +113,10 @@ $.extend( $.DziTileSource.prototype, $.TileSource.prototype, /** @lends OpenSead
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ( "http://schemas.microsoft.com/deepzoom/2008" == ns ||
|
ns = (ns || '').toLowerCase();
|
||||||
"http://schemas.microsoft.com/deepzoom/2009" == ns );
|
|
||||||
|
return (ns.indexOf('schemas.microsoft.com/deepzoom/2008') !== -1 ||
|
||||||
|
ns.indexOf('schemas.microsoft.com/deepzoom/2009') !== -1);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user