Fix some popups restricted to just one popup window

- Admin -> Edit user
- Mail -> View source & View header
This commit is contained in:
nathangray 2020-03-23 09:57:06 -06:00
parent 1ef7e5c790
commit 57d3b4d060
2 changed files with 2 additions and 2 deletions

View File

@ -888,7 +888,7 @@ app.classes.admin = AppJS.extend(
params.account_id = _senders[0].id.split('::').pop(); // get last :: separated part params.account_id = _senders[0].id.split('::').pop(); // get last :: separated part
break; 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');
}, },
/** /**

View File

@ -2610,7 +2610,7 @@ app.classes.mail = AppJS.extend(
*/ */
mail_displayHeaderLines: function(_url) { mail_displayHeaderLines: function(_url) {
// only used by right clickaction // 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');
}, },
/** /**