Skip to content

Commit f14e2e6

Browse files
committed
update
1 parent 3dd2b8b commit f14e2e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+498
-0
lines changed

overlapping-model/cell.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Cell {
2+
constructor(value) {
3+
this.collapsed = false;
4+
this.checked = false;
5+
if (value instanceof Array) {
6+
this.options = value;
7+
} else {
8+
this.options = [];
9+
for (let i = 0; i < value; i++) {
10+
this.options[i] = i;
11+
}
12+
}
13+
}
14+
}

overlapping-model/flowers.png

335 Bytes
Loading
File renamed without changes.

0 commit comments

Comments
 (0)