소스 검색

Empty code box on every parse call

ApisNecros 1 년 전
부모
커밋
5f776ccdc2
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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);