Skip to content

Instantly share code, notes, and snippets.

@artberri
Created May 28, 2019 18:02
Show Gist options
  • Save artberri/85ef73ae3f5fbe90895e399f15447735 to your computer and use it in GitHub Desktop.
Save artberri/85ef73ae3f5fbe90895e399f15447735 to your computer and use it in GitHub Desktop.
<div class="view">
<input class="toggle"
type="checkbox"
[checked]="isCompleted"
(click)="onToggleCheckboxClicked()">
<label (dblclick)="onDoubleClicked()">{{ todo.title }}</label>
<button class="destroy" (click)="onRemoveButtonClicked()"></button>
</div>
<input [(ngModel)]="todoTitleInput"
class="edit"
(blur)="onInputBlur(todoTitleInput)"
(keyup.enter)="onInputBlur(todoTitleInput)">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment