We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d18de24 commit 60b64c5Copy full SHA for 60b64c5
utils/editors/js-console/html/output-console/v2.0/output-console-v2.0.html
@@ -401,15 +401,15 @@
401
iframe = document.createElement('iframe');
402
obj.iframe = iframe;
403
document.body.append(iframe)
404
+ //cur.root.append(iframe);
405
406
iframe.style.display = 'none';
- iframe.sandbox = 'allow-scripts allow-same-origin';
407
+ iframe.sandbox = 'allow-scripts allow-same-origin';
408
409
var blob = new Blob([html],{type:'text/html'});
410
var url = window.URL.createObjectURL(blob);
411
iframe.onload = onload;
412
iframe.srcdoc = '';
- //cur.root.append(iframe);
413
414
return promise;
415
0 commit comments