mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
36 lines
962 B
TypeScript
36 lines
962 B
TypeScript
import * as DuoWebSDK from 'duo_web_sdk';
|
|
import { getQsParam } from './common';
|
|
|
|
// tslint:disable-next-line
|
|
require('./duo.scss');
|
|
|
|
document.addEventListener('DOMContentLoaded', event => {
|
|
const frameElement = document.createElement('iframe');
|
|
frameElement.setAttribute('id', 'duo_iframe');
|
|
setFrameHeight();
|
|
document.body.appendChild(frameElement);
|
|
|
|
const hostParam = getQsParam('host');
|
|
const requestParam = getQsParam('request');
|
|
DuoWebSDK.init({
|
|
iframe: 'duo_iframe',
|
|
host: hostParam,
|
|
sig_request: requestParam,
|
|
submit_callback: (form: any) => {
|
|
invokeCSCode(form.elements.sig_response.value);
|
|
},
|
|
});
|
|
|
|
window.onresize = setFrameHeight;
|
|
|
|
function setFrameHeight() {
|
|
frameElement.style.height = window.innerHeight + 'px';
|
|
}
|
|
});
|
|
|
|
function invokeCSCode(data: string) {
|
|
try {
|
|
(window as any).invokeCSharpAction(data);
|
|
} catch (err) { }
|
|
}
|