Created
November 23, 2020 17:20
-
-
Save serge-hulne/8b8fef3f0500f879f2ffce3388f53a3a to your computer and use it in GitHub Desktop.
Create two tasks initially:
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
| //======================== | |
| // Populate list_of_tasks: | |
| //======================== | |
| all_tasks.append( | |
| new TaskAction("Task 1", false, { | |
| add: channel_add, | |
| delete: channel_delete, | |
| check: channel_checked, | |
| }) | |
| ); | |
| all_tasks.append( | |
| new TaskAction("Task 2", true, { | |
| add: channel_add, | |
| delete: channel_delete, | |
| check: channel_checked, | |
| }) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment