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 9fdb807 commit c4b827eCopy full SHA for c4b827e
InteractiveHtmlBom/ibom.html
@@ -771,7 +771,23 @@
771
}
772
773
774
+ function removeGutterNode(node) {
775
+ for(i = 0; i < node.childNodes.length; i++) {
776
+ if (node.childNodes[i].classList &&
777
+ node.childNodes[i].classList.contains("gutter")) {
778
+ node.removeChild(node.childNodes[i]);
779
+ break;
780
+ }
781
782
783
+
784
+ function cleanGutters() {
785
+ removeGutterNode(document.getElementById("bot"));
786
+ removeGutterNode(document.getElementById("canvasdiv"));
787
788
789
window.onload = function(e) {
790
+ cleanGutters();
791
allcanvas = {};
792
allcanvas.front = {};
793
allcanvas.back = {};
0 commit comments