mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
Remove old IE Edge hacks
This commit is contained in:
@@ -7,8 +7,6 @@ import 'web-animations-js';
|
||||
// tslint:disable-next-line
|
||||
require('./scss/popup.scss');
|
||||
|
||||
import { BrowserApi } from '../browser/browserApi';
|
||||
|
||||
import { AppModule } from './app.module';
|
||||
|
||||
if (process.env.ENV === 'production') {
|
||||
@@ -16,22 +14,6 @@ if (process.env.ENV === 'production') {
|
||||
}
|
||||
|
||||
function init() {
|
||||
if (BrowserApi.isEdge18) {
|
||||
const inPopup = window.location.search === '' || window.location.search.indexOf('uilocation=') === -1 ||
|
||||
window.location.search.indexOf('uilocation=popup') > -1;
|
||||
if (inPopup) {
|
||||
const bodyRect = document.querySelector('body').getBoundingClientRect();
|
||||
chrome.windows.create({
|
||||
url: 'popup/index.html?uilocation=popout',
|
||||
type: 'popup',
|
||||
width: Math.round(bodyRect.width + 60),
|
||||
height: Math.round(bodyRect.height),
|
||||
});
|
||||
BrowserApi.closePopup(window);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
platformBrowserDynamic().bootstrapModule(AppModule, { preserveWhitespaces: true });
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user