Fix context

This commit is contained in:
Timmy Willison 2013-09-11 08:46:08 -05:00
parent 577df98524
commit c13c5d7d24

View File

@ -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 );
}
};
}