1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

load DuoWebSDK as a module

This commit is contained in:
Kyle Spearrin
2018-06-11 13:33:00 -04:00
parent 822b24be76
commit 2033e46683
3 changed files with 4 additions and 6 deletions

2
jslib

Submodule jslib updated: cd3c2ddff1...4bd9a9fc11

View File

@@ -1,5 +1,4 @@
// tslint:disable-next-line
require('../scripts/duo.js');
import * as DuoWebSDK from 'jslib/misc/duo';
document.addEventListener('DOMContentLoaded', () => {
const isSafari = (typeof safari !== 'undefined') && navigator.userAgent.indexOf(' Safari/') !== -1 &&
@@ -19,7 +18,8 @@ document.addEventListener('DOMContentLoaded', () => {
}
if (msg.data.type === 'duo') {
(window as any).Duo.init({
DuoWebSDK.init({
iframe: undefined,
host: msg.data.host,
sig_request: msg.data.signature,
submit_callback: (theForm: Document) => {

View File

@@ -4,8 +4,6 @@ import 'web-animations-js';
// tslint:disable-next-line
require('./scss/popup.scss');
// tslint:disable-next-line
require('../scripts/duo.js');
import { AppModule } from './app.module';