mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 12:01:20 +02:00
Fix type error not finding app object
This commit is contained in:
@ -1269,6 +1269,6 @@ var fw_base = (function(){ "use strict"; return Class.extend(
|
|||||||
*/
|
*/
|
||||||
isAnInternalApp: function(_app)
|
isAnInternalApp: function(_app)
|
||||||
{
|
{
|
||||||
return _app.appName != _app.internalName;
|
return _app && _app.appName != _app.internalName;
|
||||||
}
|
}
|
||||||
});}).call(this);
|
});}).call(this);
|
||||||
|
Reference in New Issue
Block a user