Skip to content

Commit

Permalink
[PM-4366] Update popout windows to open as a popup window type rath…
Browse files Browse the repository at this point in the history
…er 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
  • Loading branch information
cagonzalezcs authored Oct 17, 2023
1 parent ba7a211 commit 20a9abb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { BrowserPopoutWindowService as BrowserPopupWindowServiceInterface } from
class BrowserPopoutWindowService implements BrowserPopupWindowServiceInterface {
private singleActionPopoutTabIds: Record<string, number> = {};
private defaultPopoutWindowOptions: chrome.windows.CreateData = {
type: "normal",
type: "popup",
focused: true,
width: 500,
height: 800,
width: 380,
height: 630,
};

async openUnlockPrompt(senderWindowId: number) {
Expand Down

0 comments on commit 20a9abb

Please sign in to comment.