From 19de30ce0f781a4c126d0220f7a7651db4568e2d Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Wed, 11 Sep 2013 08:46:08 -0500 Subject: [PATCH] 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 ); } }; } -- 2.39.5