1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

adjustments for edge 18 workarounds

This commit is contained in:
Kyle Spearrin
2018-10-03 08:26:46 -04:00
parent adb3dc78ee
commit 815ef17d02
6 changed files with 27 additions and 14 deletions

View File

@@ -56,8 +56,8 @@ export class PopOutComponent implements OnInit {
chrome.windows.create({
url: href,
type: 'popup',
width: bodyRect.width + 60,
height: bodyRect.height,
width: bodyRect.width ? bodyRect.width + 60 : 375,
height: bodyRect.height || 600,
});
if (this.popupUtilsService.inPopup(window)) {