[PM-4366] Update popout windows to open as a `popup` window type rather than a `normal` window type (#6600)

* [PM-4366] Update popout windows to open as a `popup` window type rather than a `normal` window type

* [PM-4366] Update popout windows to open as a `popup` window type rather than a `normal` window type
This commit is contained in:
Cesar Gonzalez 2023-10-17 15:30:53 -05:00 committed by GitHub
parent ba7a211f0d
commit 20a9abbe19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -7,10 +7,10 @@ import { BrowserPopoutWindowService as BrowserPopupWindowServiceInterface } from
class BrowserPopoutWindowService implements BrowserPopupWindowServiceInterface { class BrowserPopoutWindowService implements BrowserPopupWindowServiceInterface {
private singleActionPopoutTabIds: Record<string, number> = {}; private singleActionPopoutTabIds: Record<string, number> = {};
private defaultPopoutWindowOptions: chrome.windows.CreateData = { private defaultPopoutWindowOptions: chrome.windows.CreateData = {
type: "normal", type: "popup",
focused: true, focused: true,
width: 500, width: 380,
height: 800, height: 630,
}; };
async openUnlockPrompt(senderWindowId: number) { async openUnlockPrompt(senderWindowId: number) {