We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a406da0 commit 9a829f6Copy full SHA for 9a829f6
utils/editors/js-console/html/output-console/v2.0/output-console-v2.0.html
@@ -341,7 +341,7 @@
341
<head>
342
343
<script type=module>
344
-
+/*
345
// Catch *everything* the iframe might throw
346
window.addEventListener("error", (e) => {
347
console.log("iframe error:", e.message);
@@ -350,7 +350,8 @@
350
window.addEventListener("unhandledrejection", (e) => {
351
console.log("iframe unhandledrejection:", e.reason);
352
});
353
+*/
354
+
355
window.addEventListener('message',async({data})=>{
356
357
var {js} = data;
0 commit comments