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:19 -0500 |
commit | c13c5d7d24bb58462f241ef155b030a02a004400 (patch) | |
tree | 2df10ed37f5b3bf03e673920564ffaa1bb7c0fa2 /src/css | |
parent | 577df985244ef3dcbc34c1e647ac9de513e94c3c (diff) | |
download | jquery-c13c5d7d24bb58462f241ef155b030a02a004400.tar.gz jquery-c13c5d7d24bb58462f241ef155b030a02a004400.zip |
Fix context
Diffstat (limited to 'src/css')
-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 ); } }; } |