Fix wrong argument order to jQuery.proxy()

This commit is contained in:
Nathan Gray 2013-07-19 12:37:47 +00:00
parent b7ad0d33f8
commit 36b5590882

View File

@ -232,7 +232,7 @@ function et2_checkType(_val, _type, _attr, _cname)
{ {
try try
{ {
return jQuery.proxy(parent,parent[func]); return jQuery.proxy(parent[func],parent);
} }
catch (e) catch (e)
{ {