Skip to content

Commit 4bff03c

Browse files
committed
save
1 parent 0ae06f7 commit 4bff03c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/app/footer/footer.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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">
44
<li>
55
<a
66
[routerLink]="['/']"
@@ -23,5 +23,5 @@
2323
</a>
2424
</li>
2525
</ul>
26-
<button class="clear-completed" (click)="clearCompleted()">Clear completed</button>
26+
<button id="clear-completed" class="clear-completed" (click)="clearCompleted()">Clear completed</button>
2727
</footer>

src/app/new-todo/new-todo.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<input
2+
id="new-todo"
23
class="new-todo"
34
type="text"
45
autofocus
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<section class="main">
1+
<section id="main" class="main">
22
<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">
44
<label (click)="toggleAll()">Mark all as complete</label>
55
</div>
6-
<ul class="todo-list">
6+
<ul id="todo-list" class="todo-list">
77
<app-todo [todo]="todo" *ngFor="let todo of todos"></app-todo>
88
</ul>
99
</section>

0 commit comments

Comments
 (0)