We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1038528 commit b1e890aCopy full SHA for b1e890a
utils/editors/js-console/html/output-console/v2.0/output-console-v2.0.html
@@ -367,13 +367,16 @@
367
368
iframe = document.createElement('iframe');
369
obj.iframe = iframe;
370
+ document.body.append(iframe);
371
+
372
//iframe.style.display = 'none';
373
//iframe.sandbox = 'allow-scripts allow-same-origin';
374
375
var blob = new Blob([html],{type:'text/html'});
376
var url = window.URL.createObjectURL(blob);
- iframe.src = url;
377
iframe.onload = onload;
- cur.root.append(iframe);
378
+ iframe.src = url;
379
+ //cur.root.append(iframe);
380
381
return promise;
382
0 commit comments