Skip to content

Instantly share code, notes, and snippets.

@serge-hulne
Created November 23, 2020 17:20
Show Gist options
  • Select an option

  • Save serge-hulne/8b8fef3f0500f879f2ffce3388f53a3a to your computer and use it in GitHub Desktop.

Select an option

Save serge-hulne/8b8fef3f0500f879f2ffce3388f53a3a to your computer and use it in GitHub Desktop.
Create two tasks initially:
//========================
// 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