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

index 0d35a4f09ef33f6ffeffb4977fe42b0edb08ae19..42d07eb4f575bec8b37991cf9f0cdacce9053970 100644 (file)
@@ -122,7 +122,7 @@ jQuery.fn.extend({
                        parentOffset = { top: 0, left: 0 },
                        elem = this[ 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();