Use parseFloat instead of parseInt to read CSS values.
This fixes #7730 and #7885.
This commit is contained in:
parent
d9cb69873c
commit
75655e5758
2 changed files with 31 additions and 3 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue