Skip to content

Instantly share code, notes, and snippets.

@rjdestigter
Last active September 25, 2019 17:46
Show Gist options
  • Save rjdestigter/e537a4eea01016b07c978b6288f33231 to your computer and use it in GitHub Desktop.
Save rjdestigter/e537a4eea01016b07c978b6288f33231 to your computer and use it in GitHub Desktop.
TodoItem
TodoItem
Complete
uncheck -> Incomplete
Incomplete*
check -> Complete
function render(model) {
return $('input', { type: 'checkbox', checked: model.active_state === 'Complete' })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment