We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad4e295 commit 1038528Copy full SHA for 1038528
utils/editors/js-console/html/output-console/v2.0/output-console-v2.0.html
@@ -341,6 +341,7 @@
341
<head>
342
343
<script type=module>
344
+
345
window.addEventListener('message',async({data})=>{
346
347
var {js} = data;
@@ -366,8 +367,8 @@
366
367
368
iframe = document.createElement('iframe');
369
obj.iframe = iframe;
- iframe.style.display = 'none';
370
- iframe.sandbox = 'allow-scripts allow-same-origin';
+ //iframe.style.display = 'none';
371
+ //iframe.sandbox = 'allow-scripts allow-same-origin';
372
var blob = new Blob([html],{type:'text/html'});
373
var url = window.URL.createObjectURL(blob);
374
iframe.src = url;
0 commit comments