mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-06 07:13:31 +03:00
changed indexOfImage to colorIndex
This commit is contained in:
parent
f268607b54
commit
910eaf6da6
1 changed files with 3 additions and 3 deletions
|
@ -490,13 +490,13 @@ $.Drawer.prototype = {
|
|||
return;
|
||||
}
|
||||
|
||||
var indexOfImage = this.viewer.world.getIndexOfItem(tiledImage) % this.debugGridColor.length;
|
||||
var colorIndex = this.viewer.world.getIndexOfItem(tiledImage) % this.debugGridColor.length;
|
||||
var context = this.context;
|
||||
context.save();
|
||||
context.lineWidth = 2 * $.pixelDensityRatio;
|
||||
context.font = 'small-caps bold ' + (13 * $.pixelDensityRatio) + 'px arial';
|
||||
context.strokeStyle = this.debugGridColor[indexOfImage];
|
||||
context.fillStyle = this.debugGridColor[indexOfImage];
|
||||
context.strokeStyle = this.debugGridColor[colorIndex];
|
||||
context.fillStyle = this.debugGridColor[colorIndex];
|
||||
|
||||
if ( this.viewport.degrees !== 0 ) {
|
||||
this._offsetForRotation({degrees: this.viewport.degrees});
|
||||
|
|
Loading…
Add table
Reference in a new issue