From c13c5d7d24bb58462f241ef155b030a02a004400 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Wed, 11 Sep 2013 08:46:08 -0500 Subject: Fix context --- src/css/addGetHookIf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } }; } -- cgit v1.2.3