Files
trezor-suite/packages/suite-data/iframe.html
Szymon Lesisz 77f13e96b9 Feat/update connect (#1626)
* update trezor-connect@8.1.2

* update webpack and webpack-related dependecies

* Update trezor-connect.webpack.js (HtmlWebpackPlugin changes)

* update connect files
2020-04-24 12:55:29 +02:00

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>TrezorConnect | Trezor</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Trezor info@trezor.io" />
<meta name="robots" content="index, follow" />
<meta name="title" content="TrezorConnect | Trezor" />
<meta http-equiv="Cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
</head>
<body>
<script type="text/javascript">
window.parent.postMessage({
event: 'UI_EVENT',
type: 'iframe-bootstrap',
}, '*');
const iframeScript = document.createElement('script');
iframeScript.setAttribute('type', 'text/javascript');
iframeScript.setAttribute('src', '<%= htmlWebpackPlugin.files.js[0] %>');
iframeScript.setAttribute('async', 'false');
document.body.appendChild(iframeScript);
</script>
</body>
</html>