1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

assign window from app

This commit is contained in:
Kyle Spearrin
2018-01-20 14:05:20 -05:00
parent e0674e1b9c
commit 4081c55be1
3 changed files with 6 additions and 9 deletions

View File

@@ -18,7 +18,10 @@ require('../../scripts/duo.js');
require('../less/libs.less');
require('../less/popup.less');
import U2f from '../../scripts/u2f';
import { BrowserApi } from '../../browser/browserApi';
window.BrowserApi = BrowserApi;
import { U2f } from '../../scripts/u2f';
window.U2f = U2f;
import Analytics from '../../scripts/analytics';
new Analytics(window);