Parcourir la source

Empty code box on every parse call

ApisNecros il y a 1 an
Parent
commit
5f776ccdc2
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      starfish.js

+ 2 - 0
starfish.js

@@ -82,6 +82,8 @@ class CodeBox {
      * Transforms the textual code box into usable matrix
      */
     ParseCodeBox() {
+        this.box = [];
+
         const cbRaw = this.codeBoxDOM.value;
         const rows = cbRaw.split("\n").filter((r) => r.length);