summaryrefslogtreecommitdiff
path: root/web-ui/app/js/sandbox.js
blob: 63ce94b21427ab255bdc1f5a08a7893c181937bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(function () {
  'use strict';

  window.addEventListener('message', function(e) {
    var mainWindow = e.source;
    mainWindow.postMessage('data ok', e.origin);
  });

  window.onmessage = function (e) {
    if (e.data.html) {
      document.body.innerHTML = e.data.html;
    }
  };
})();