We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a413e6 commit 35a004eCopy full SHA for 35a004e
utils/editors/js-console/html/output-console/v3.0/output-console-v3.0.html
@@ -169,6 +169,7 @@
169
debug('initdom');
170
shadow = host.shadowRoot;
171
172
+ root = $(shadow,'#root');
173
174
chk.isolate = $.chkbox(shadow,'#isolate',btn.isolate);
175
@@ -345,10 +346,11 @@
345
346
iframe.setAttribute('allow',sandbox_allow);
347
iframe.src = sandbox_url;
348
debug(sandbox_url);
- iframe.style.cssText = 'display:none';
349
+ //iframe.style.cssText = 'display:none';
350
iframe.onload = onload;
351
- document.body.append(iframe)
352
+ root.append(iframe);
353
+ //document.body.append(iframe)
354
//cur.root.append(iframe);
355
356
0 commit comments