blob: a473501b014db604f70b4b20c3a55a22e5c40b5e (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!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>
|