mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-21 06:40:33 +01:00
* update trezor-connect@8.1.2 * update webpack and webpack-related dependecies * Update trezor-connect.webpack.js (HtmlWebpackPlugin changes) * update connect files
32 lines
1.1 KiB
HTML
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>
|