agper-agen/modules/pdf-previewer.html

13 lines
385 B
HTML

<iframe id="previewer" style="width: 80vw; height: 80vh;">
</iframe>
<script type="module">
const thisDialog = moly.lastDialog();
const data = thisDialog.data;
function µ(selector)
{
if (selector) return $(thisDialog.box).find(selector);
return $(thisDialog.box);
}
µ('#previewer')[0].src = "data:application/pdf;base64,"+data.data;
</script>