blob: 98c2013915eae38bea2b8722bb8f80378ae894a0 [file] [log] [blame] [edit]
<!DOCTYPE html>
<script>
let logic = new Function('event', (new URL(location)).searchParams.get('logic'));
onload = () => window.portalHost.postMessage('ready', '*');
onportalactivate = event => {
Promise.resolve(event)
.then(logic)
.then(reply => event.data.replyPort.postMessage(reply));
};
</script>