Guest User

Untitled

a guest
Jun 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. onmessage = function(global) {
  2. return function(e) {
  3. if(e.data.indexOf('start') > -1) {
  4. var str = '<table width="100%" border="1" cellspacing="0" cellpadding="2">\n';
  5. for (var i in global) {
  6. if(i!=='onmessage') {
  7. str += '<tr><td style="background: #AABBCC">' + i + '</td><td style="background: #DDEEFF">' + global[i] + '</td></tr>\n';
  8. } else {
  9. str += '<tr><td style="background: #AABBCC">' + i + '</td><td style="background: #DDEEFF">onmessage eventHandler</td></tr>\n';
  10. }
  11. }
  12. str += '</table>\n';
  13. global.postMessage(str);
  14. }
  15. };
  16. }(this);
Add Comment
Please, Sign In to add comment