Browse Source

Reset CB pointer and output on run

Added the code box's pointer and output to the things reset when
ParseCodeBox is ran.
ApisNecros 1 năm trước cách đây
mục cha
commit
fe68bfa16c
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      starfish.js

+ 3 - 0
starfish.js

@@ -82,7 +82,10 @@ class CodeBox {
      * Transforms the textual code box into usable matrix
      */
     ParseCodeBox() {
+        // Reset some field for a clean run
         this.box = [];
+        this.pointer = [0, 0];
+        this.outputDOM.value = "";
 
         const cbRaw = this.codeBoxDOM.value;
         const rows = cbRaw.split("\n").filter((r) => r.length);