Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

output.js 212B

12345678910
  1. function receiveMessage(event) {
  2. var html = event.data;
  3. insertCards(html);
  4. }
  5. function insertCards(html) {
  6. document.body.innerHTML = html;
  7. }
  8. window.addEventListener("message", receiveMessage, false);