mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
WIP of framework's multitab implementation
This commit is contained in:
@ -697,6 +697,19 @@ var fw_base = (function(){ "use strict"; return Class.extend(
|
||||
|
||||
if (app)
|
||||
{
|
||||
if (_app == '_tab')
|
||||
{
|
||||
// add target flag
|
||||
_link += '&target=_tab';
|
||||
var appname = app.appName+":"+btoa(_link);
|
||||
this.applications[appname] = app;
|
||||
this.applications[appname]['appName'] = appname;
|
||||
this.applications[appname]['indexUrl'] = _link;
|
||||
this.applications[appname]['tab'] = null;
|
||||
this.applications[appname]['browser'] = null;
|
||||
this.applications[appname]['title'] = 'view';
|
||||
app = this.getApplicationByName(appname);
|
||||
}
|
||||
this.applicationTabNavigate(app, _link);
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user