Use parseFloat instead of parseInt to read CSS values.

This fixes #7730 and #7885.
This commit is contained in:
Sylvester Keil 2011-01-15 13:56:20 +01:00
parent d9cb69873c
commit 75655e5758
2 changed files with 31 additions and 3 deletions

View file

@ -187,11 +187,13 @@ jQuery.offset = {
// need to be able to calculate position if either top or left is auto and position is absolute
if ( calculatePosition ) {
curPosition = curElem.position();
curTop = curPosition.top;
curLeft = curPosition.left;
} else {
curTop = parseFloat( curCSSTop ) || 0;
curLeft = parseFloat( curCSSLeft ) || 0;
}
curTop = calculatePosition ? curPosition.top : parseInt( curCSSTop, 10 ) || 0;
curLeft = calculatePosition ? curPosition.left : parseInt( curCSSLeft, 10 ) || 0;
if ( jQuery.isFunction( options ) ) {
options = options.call( elem, i, curOffset );
}