Offset: return zeros for disconnected/hidden elements

Fixes gh-2310
Close gh-2396
This commit is contained in:
Timmy Willison
2015-06-15 11:02:08 -04:00
parent ee69e9c8b8
commit 63f19a95b9
2 changed files with 12 additions and 15 deletions

View File

@@ -39,7 +39,7 @@ jQuery.offset = {
elem.style.position = "relative";
}
curOffset = curElem.offset() || { top: 0, left: 0 };
curOffset = curElem.offset();
curCSSTop = jQuery.css( elem, "top" );
curCSSLeft = jQuery.css( elem, "left" );
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
@@ -110,6 +110,9 @@ jQuery.fn.extend({
( docElem.clientLeft || 0 )
};
}
// Return zeros for disconnected and hidden elements (gh-2310)
return rect;
},
position: function() {