mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Ignore browsing apps with their status 5 and index set to none
This commit is contained in:
parent
4045c06896
commit
d29459d9e5
@ -236,8 +236,8 @@ var fw_base = (function(){ "use strict"; return Class.extend(
|
||||
deferred = _app.browser.browse(_url);
|
||||
this.setActiveApp(_app);
|
||||
}
|
||||
// load application with status 5 as it will run in the background
|
||||
else if (_status == 5)
|
||||
// load application with status 5 as it will run in the background, and ignore apps with index set none
|
||||
else if (_status == 5 && !_url.match(/menuaction\=none/))
|
||||
{
|
||||
deferred = _app.browser.browse(_url);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user