File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
- < footer class ="footer " *ngIf ="showFooter ">
2
- < span class ="todo-count "> {{ countTodos }} items left</ span >
3
- < ul class ="filters ">
1
+ < footer id =" footer " class ="footer " *ngIf ="showFooter ">
2
+ < span id =" todo-count " class ="todo-count "> {{ countTodos }} items left</ span >
3
+ < ul id =" filters " class ="filters ">
4
4
< li >
5
5
< a
6
6
[routerLink] ="['/'] "
23
23
</ a >
24
24
</ li >
25
25
</ ul >
26
- < button class ="clear-completed " (click) ="clearCompleted() "> Clear completed</ button >
26
+ < button id =" clear-completed " class ="clear-completed " (click) ="clearCompleted() "> Clear completed</ button >
27
27
</ footer >
Original file line number Diff line number Diff line change 1
1
< input
2
+ id ="new-todo "
2
3
class ="new-todo "
3
4
type ="text "
4
5
autofocus
Original file line number Diff line number Diff line change 1
- < section class ="main ">
1
+ < section id =" main " class ="main ">
2
2
< div class ="toogle-view " *ngIf ="todos.length > 0 ">
3
- < input class ="toggle-all " type ="checkbox " [formControl] ="checkField ">
3
+ < input id =" toggle-all " class ="toggle-all " type ="checkbox " [formControl] ="checkField ">
4
4
< label (click) ="toggleAll() "> Mark all as complete</ label >
5
5
</ div >
6
- < ul class ="todo-list ">
6
+ < ul id =" todo-list " class ="todo-list ">
7
7
< app-todo [todo] ="todo " *ngFor ="let todo of todos "> </ app-todo >
8
8
</ ul >
9
9
</ section >
You can’t perform that action at this time.
0 commit comments