fix ignored _onExecute attribute

This commit is contained in:
Christian Binder 2012-08-25 14:40:48 +00:00
parent 3ef3e7d9e0
commit bd270b4010

View File

@ -159,6 +159,10 @@ function egwAction(_parent, _id, _caption, _iconUrl, _onExecute, _allowOnMultipl
this.children = [];
this.onExecute = new egwFnct(this, null, []);
if(_onExecute !== null)
{
this.set_onExecute(_onExecute);
}
}
/**