Changelog for #177; minor doc tweaks

This commit is contained in:
Ian Gilman 2013-08-02 09:40:55 -07:00
parent 51e37e3553
commit 967f2e4f32
2 changed files with 4 additions and 3 deletions

View File

@ -7,6 +7,7 @@ OPENSEADRAGON CHANGELOG
* onTouchEnd did not call the correct mouse up handler; fixed (#159)
* Touch events no longer capture mouse (was causing issues on devices that support both) (#168)
* You can now provide an onDraw function for overlays to do custom overlay manipulation (#160)
* Hiding and restoring broke the viewer; fixed (#177)
0.9.129:

View File

@ -1109,10 +1109,10 @@ $.extend( $.Viewer.prototype, $.EventHandler.prototype, $.ControlDock.prototype,
/**
* _getSafeElemSize returns getElementSize(), but refuses to return 0 for X or y,
* which was causing some calling operations in updateOnve and openTileSource to
* _getSafeElemSize is like getElementSize(), but refuses to return 0 for x or y,
* which was causing some calling operations in updateOnce and openTileSource to
* return NaN.
* @returns {point}
* @returns {Point}
* @private
*/
function _getSafeElemSize (oElement) {