Fix calling the wrong function in IIIFTileSource to retrieve tile width

This commit is contained in:
Conner Wingard 2015-07-02 11:24:43 -04:00
parent d11c4fe107
commit c27a43e49e

View File

@ -244,7 +244,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, /** @lends OpenSea
iiifQuality,
uri;
tileWidth = this.getTileSize(level);
tileWidth = this.getTileWidth(level);
tileHeight = this.getTileHeight(level);
iiifTileSizeWidth = Math.ceil( tileWidth / scale );
iiifTileSizeHeight = Math.ceil( tileHeight / scale );