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