blob: 0cabce69f8e849c3abbcad48f5160e9ff6373a57 (
plain)
1
2
3
4
5
6
7
8
9
|
<script>
addEventListener('load', function() {
opener.postMessage({ type: 'LOADED' }, '*');
});
addEventListener('pageshow', function() {
opener.postMessage({ type: 'PAGESHOW' }, '*');
});
</script>
|