Compare commits

..

No commits in common. "165aaebd4c681af4ff3b15db7cb5b9c8c0c218a1" and "fe3b1c5a0d4ad1e62d748fbe294a5aea6bf26280" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ OPENSEADRAGON CHANGELOG
* Added isFullScreen method to Viewer (#2067 @JachiOnuoha) * Added isFullScreen method to Viewer (#2067 @JachiOnuoha)
* Fixed an issue where turning off panVertical or panHorizontal would not affect the panning keyboard combos (#2069 @JachiOnuoha) * Fixed an issue where turning off panVertical or panHorizontal would not affect the panning keyboard combos (#2069 @JachiOnuoha)
* Cleaned up console.logs so that errors and warnings use console.error and console.warn as appropriate (#2073 @Abhishek-90) * Cleaned up console.logs so that errors and warnings use console.error and console.warn as appropriate (#2073 @Abhishek-90)
* Improved documentation (#2067 @JachiOnuoha, #2112 @shyamkumaryadav, #2152 @joedf, #2155 @samwilson) * Improved documentation (#2067 @JachiOnuoha, #2112 @shyamkumaryadav, #2152 @joedf)
* Added option to include POST data when loading files via Ajax (#2072 @Aiosa) * Added option to include POST data when loading files via Ajax (#2072 @Aiosa)
* Fixed: Setting useCanvas to false would break the viewer (#2116 @rvv-bouvet) * Fixed: Setting useCanvas to false would break the viewer (#2116 @rvv-bouvet)
* Allow silencing multi-image warnings on viewport coordinate conversion functions (#2120 @claycoleman) * Allow silencing multi-image warnings on viewport coordinate conversion functions (#2120 @claycoleman)

View File

@ -2319,7 +2319,7 @@ function OpenSeadragon( options ){
* @param {Function} options.success - a function to call on a successful response * @param {Function} options.success - a function to call on a successful response
* @param {Function} options.error - a function to call on when an error occurs * @param {Function} options.error - a function to call on when an error occurs
* @param {Object} options.headers - headers to add to the AJAX request * @param {Object} options.headers - headers to add to the AJAX request
* @param {String} options.responseType - the response type of the AJAX request * @param {String} options.responseType - the response type of the the AJAX request
* @param {String} options.postData - HTTP POST data (usually but not necessarily in k=v&k2=v2... form, * @param {String} options.postData - HTTP POST data (usually but not necessarily in k=v&k2=v2... form,
* see TileSrouce::getPostData), GET method used if null * see TileSrouce::getPostData), GET method used if null
* @param {Boolean} [options.withCredentials=false] - whether to set the XHR's withCredentials * @param {Boolean} [options.withCredentials=false] - whether to set the XHR's withCredentials

View File

@ -230,7 +230,7 @@ $.Rect.prototype = {
* Returns the width and height component as a vector OpenSeadragon.Point * Returns the width and height component as a vector OpenSeadragon.Point
* @function * @function
* @returns {OpenSeadragon.Point} The 2 dimensional vector representing the * @returns {OpenSeadragon.Point} The 2 dimensional vector representing the
* width and height of the rectangle. * the width and height of the rectangle.
*/ */
getSize: function() { getSize: function() {
return new $.Point(this.width, this.height); return new $.Point(this.width, this.height);