aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2013-12-18 20:54:02 -0500
committerDave Methvin <dave.methvin@gmail.com>2013-12-18 20:54:02 -0500
commitb876352d975ef6049eb9d9c12d2ab16eeafa4599 (patch)
treea6da922e8800145f0f644ec3d72c934301acc282
parent04a652a99a7d7dddf8ef377a9be204b205e41807 (diff)
downloadjquery-b876352d975ef6049eb9d9c12d2ab16eeafa4599.tar.gz
jquery-b876352d975ef6049eb9d9c12d2ab16eeafa4599.zip
Offset: Fix comment typo, thanks @AurelioDeRosa
-rw-r--r--src/offset.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/offset.js b/src/offset.js
index 0d35a4f09..42d07eb4f 100644
--- a/src/offset.js
+++ b/src/offset.js
@@ -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();