We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dc8390 commit 4951739Copy full SHA for 4951739
1 file changed
docs/main.js
@@ -121,6 +121,7 @@
121
parent.removeChild(codeElement);
122
parent.removeChild(target);
123
parent.style.background = "transparent";
124
+ parent.style.overflow = "hidden";
125
126
RunKit.createNotebook({
127
element: parent,
@@ -131,7 +132,7 @@
131
132
minHeight: "52px",
133
onLoad: function(notebook) {
134
var iframe = parent.lastElementChild;
- iframe.style.cssText = 'height:' + iframe.style.height + ';width:' + iframe.style.width;
135
+ iframe.style.cssText = 'height:' + iframe.style.height;
136
iframe.classList.add('repl')
137
notebook.evaluate()
138
}
0 commit comments