diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 08:46:08 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 08:46:08 -0500 |
commit | 19de30ce0f781a4c126d0220f7a7651db4568e2d (patch) | |
tree | 7f329ae2f2ec6344f592bc5d714a8e35ed49e1ca /src | |
parent | 2e850fb802fc01f61c8e3b9030e8391c5b283a4e (diff) | |
download | jquery-19de30ce0f781a4c126d0220f7a7651db4568e2d.tar.gz jquery-19de30ce0f781a4c126d0220f7a7651db4568e2d.zip |
Fix context
Diffstat (limited to 'src')
-rw-r--r-- | src/css/addGetHookIf.js | 2 |
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 ); } }; } |