
* Improve logging * Improve logging * Keep embed origin conigurable * Make embed URL and embed origin conigurable through env * Gitignore public embed * Add fingerprint to preview as well * Fix path Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
29 lines
646 B
HTML
29 lines
646 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.row {
|
|
display: flex;
|
|
}
|
|
.cell-1 {
|
|
border-right: 1px solid #ded9d9;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.cell-2 {
|
|
margin: 10px;
|
|
}
|
|
</style>
|
|
<script>
|
|
const searchParams = new URL(document.URL).searchParams;
|
|
const embedType = searchParams.get("embedType");
|
|
const calLink = searchParams.get("calLink");
|
|
</script>
|
|
</head>
|
|
<script type="module" src="./src/preview.ts"></script>
|
|
<body>
|
|
<div id="my-embed" style="width: 100%; height: 100%; overflow: scroll"></div>
|
|
<script type="module">
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|