blob: a473501b014db604f70b4b20c3a55a22e5c40b5e [file] [log] [blame]
<!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>