aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-09-11 08:46:08 -0500
committerTimmy Willison <timmywillisn@gmail.com>2013-09-11 08:46:08 -0500
commit19de30ce0f781a4c126d0220f7a7651db4568e2d (patch)
tree7f329ae2f2ec6344f592bc5d714a8e35ed49e1ca /src
parent2e850fb802fc01f61c8e3b9030e8391c5b283a4e (diff)
downloadjquery-19de30ce0f781a4c126d0220f7a7651db4568e2d.tar.gz
jquery-19de30ce0f781a4c126d0220f7a7651db4568e2d.zip
Fix context
Diffstat (limited to 'src')
-rw-r--r--src/css/addGetHookIf.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css/addGetHookIf.js b/src/css/addGetHookIf.js
index 214af953a..7efcbc860 100644
--- a/src/css/addGetHookIf.js
+++ b/src/css/addGetHookIf.js
@@ -22,7 +22,7 @@ function addGetHookIf( conditionFn, hookFn ) {
// Hook needed; redefine it so that the support test is not executed again.
- return (this.get = hookFn).apply( hookVar, arguments );
+ return (this.get = hookFn).apply( this, arguments );
}
};
}