shx-3d-render

main
Jan Umbach 2024-06-14 14:41:37 +02:00
parent 218faf5fac
commit 8206fa3341
1 changed files with 3 additions and 1 deletions

View File

@ -120,7 +120,7 @@
}
const uuid = this.uuid;
window.addEventListener('message', function(event) {
if(event.origin !== "https://3d-viewer.shinnex.de") return;
@ -132,6 +132,8 @@
return;
}
if(data.uuid !== uuid) return;
console.log("Message received from the child: ", data); // Message received from child
});
}