mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
Math.round getBoundingClientRect values. resolves #792
This commit is contained in:
@@ -21,8 +21,8 @@ function init() {
|
||||
chrome.windows.create({
|
||||
url: 'popup/index.html?uilocation=popout',
|
||||
type: 'popup',
|
||||
width: bodyRect.width + 60,
|
||||
height: bodyRect.height,
|
||||
width: Math.round(bodyRect.width + 60),
|
||||
height: Math.round(bodyRect.height),
|
||||
});
|
||||
BrowserApi.closePopup(window);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user