Merge pull request #1810 from ahankinson/fix-issue1184

Fix #1184: Add missing argument to .apply()
This commit is contained in:
aparajita
2013-03-05 12:40:27 -08:00
+1 -1
View File
@@ -962,7 +962,7 @@ CPWebViewAppKitScrollMaxPollCount = 3;
{
try
{
return _window[methodName].apply(args);
return _window[methodName].apply(_window, args);
}
catch (e)
{