mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-21 11:35:34 +01:00
[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:
parent
ba7a211f0d
commit
20a9abbe19
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user