mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Fix missing typeof operator
This commit is contained in:
parent
db01cfa907
commit
1e6fcec665
@ -76,8 +76,8 @@ function egwPopupAction(_id, _handler, _caption, _icon, _onExecute, _allowOnMult
|
|||||||
"alt": false
|
"alt": false
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof _value == "object" && _value.keyCode != "undefined" &&
|
if (typeof _value == "object" && typeof _value.keyCode != "undefined" &&
|
||||||
_value.caption != "undefined")
|
typeof _value.caption != "undefined")
|
||||||
{
|
{
|
||||||
sc.keyCode = _value.keyCode;
|
sc.keyCode = _value.keyCode;
|
||||||
sc.caption = _value.caption;
|
sc.caption = _value.caption;
|
||||||
|
Loading…
Reference in New Issue
Block a user