]> source.dussan.org Git - jquery.git/commitdiff
Offset: Fix comment typo, thanks @AurelioDeRosa
authorDave Methvin <dave.methvin@gmail.com>
Thu, 19 Dec 2013 01:50:53 +0000 (20:50 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Thu, 19 Dec 2013 01:50:53 +0000 (20:50 -0500)
src/offset.js

index 224f74de445d681d485adac64b629a48d918c37b..dc7bb955737a7c458de1da1e00f9c84d271a53ab 100644 (file)
@@ -117,7 +117,7 @@ jQuery.fn.extend({
                        elem = this[ 0 ],
                        parentOffset = { top: 0, left: 0 };
 
-               // Fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is it's only offset parent
+               // Fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
                if ( jQuery.css( elem, "position" ) === "fixed" ) {
                        // We assume that getBoundingClientRect is available when computed position is fixed
                        offset = elem.getBoundingClientRect();