1
0
Fork 0
mirror of https://github.com/openseadragon/openseadragon.git synced 2025-04-03 13:53:31 +03:00

refactored _getSafeElemSize()

This commit is contained in:
pnorcrss 2013-07-31 14:10:44 -05:00
parent cb39fb7e32
commit e47210d0bd

View file

@ -1114,12 +1114,12 @@ $.extend( $.Viewer.prototype, $.EventHandler.prototype, $.ControlDock.prototype,
* @private
*/
function _getSafeElemSize (oElement) {
var _oElementSize = $.getElementSize(oElement);
oElement = $.getElement( oElement );
return new $.Point (
( _oElementSize.x === 0 ? 1 : _oElementSize.x ),
( _oElementSize.y === 0 ? 1 : _oElementSize.y )
);
return new $.Point(
(oElement.clientWidth === 0 ? 1 : oElement.clientWidth),
(oElement.clientHeight === 0 ? 1 : oElement.clientHeight)
);
}
/**