-1:000000000000 | 0:57fd376c5e8a |
---|---|
1 | |
2 var count = 0; | |
3 | |
4 setTimeout(function() { | |
5 window.addEventListener("message", function(msg) { | |
6 if (++count > 1) { | |
7 self.postMessage(msg.data); | |
8 } | |
9 else msg.source.postMessage(msg.data, '*'); | |
10 }); | |
11 | |
12 document.getElementById('inner').src = iframePath; | |
13 }, 0); |