Changelog for #1200 and comment tweak

This commit is contained in:
Ian Gilman 2017-05-19 10:06:48 -07:00
parent d84102be24
commit 52525f6697
2 changed files with 3 additions and 1 deletions

View File

@ -40,6 +40,7 @@ OPENSEADRAGON CHANGELOG
* Enabled configuration of ImageLoader timeout (#1192)
* Viewer.open() now supports an initialPage argument for sequenceMode (#1196)
* Fixed: IIPImageServer didn't work with the latest OSD release (#1199)
* Now clamping pixel ratio density to a minimum of 1, fixing display issues on low density devices (#1200)
2.2.1:

View File

@ -875,7 +875,8 @@ function OpenSeadragon( options ){
};
/**
* A ratio comparing the device screen's pixel density to the canvas's backing store pixel density. Defaults to 1 if canvas isn't supported by the browser.
* A ratio comparing the device screen's pixel density to the canvas's backing store pixel density,
* clamped to a minimum of 1. Defaults to 1 if canvas isn't supported by the browser.
* @member {Number} pixelDensityRatio
* @memberof OpenSeadragon
*/