Created
May 1, 2019 17:40
-
-
Save rakia/70ba00816007c556c45b0ecb2a104bfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* NOTE: nbRows of selectedCellsState must = nbRows of the tabl | |
* nbColumns of selectedCellsState must = nbColumns of all selectable cells in the table | |
*/ | |
selectedCellsState: boolean[][] = [ | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false], | |
[false, false, false] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment