mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-26 07:49:28 +01:00
Fix some popups restricted to just one popup window
- Admin -> Edit user - Mail -> View source & View header
This commit is contained in:
parent
28fb99ba51
commit
7e1da8d909
@ -771,7 +771,7 @@ var AdminApp = /** @class */ (function (_super) {
|
||||
params.account_id = _senders[0].id.split('::').pop(); // get last :: separated part
|
||||
break;
|
||||
}
|
||||
this.egw.open_link(this.egw.link('/index.php', params), 'admin', popup);
|
||||
this.egw.open_link(this.egw.link('/index.php', params), 'admin', popup, 'admin');
|
||||
};
|
||||
/**
|
||||
* Submit statistic
|
||||
|
@ -901,7 +901,7 @@ class AdminApp extends EgwApp
|
||||
break;
|
||||
}
|
||||
|
||||
this.egw.open_link(this.egw.link('/index.php', params), 'admin', popup);
|
||||
this.egw.open_link(this.egw.link('/index.php', params), 'admin', popup, 'admin');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2616,7 +2616,7 @@ app.classes.mail = AppJS.extend(
|
||||
*/
|
||||
mail_displayHeaderLines: function(_url) {
|
||||
// only used by right clickaction
|
||||
egw_openWindowCentered(_url,'mail_display_headerLines','870','600',window.outerWidth/2,window.outerHeight/2);
|
||||
egw.openPopup(_url, '870', '600', null, 'mail');
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user