We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e06d28 commit bb9515eCopy full SHA for bb9515e
html/js/code.js
@@ -171,7 +171,10 @@ addEventListener("load", function() {
171
sandbox = new SandBox({
172
loadFiles: hasIncludes(val, context.include) ? [] : context.include,
173
place: type == "html" &&
174
- function(node) { outnode.parentNode.insertBefore(node, outnode); }
+ function(node) {
175
+ var out = document.querySelector(".sandbox-output");
176
+ out.parentNode.insertBefore(node, out);
177
+ }
178
}, function(box) {
179
output.clear();
180
if (type == "html")
0 commit comments