fixed step 3 bug
This commit is contained in:
Родитель
7d667988e0
Коммит
3a197e879a
|
@ -1,14 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head></head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<h1></h1>
|
||||
<div class="addTodo"></div>
|
||||
<nav></nav>
|
||||
</header>
|
||||
<main class="filter"></main>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
|
@ -48,7 +48,8 @@
|
|||
|
||||
function updateRemaining() {
|
||||
const remaining = document.querySelector('.remaining');
|
||||
const todos = document.querySelectorAll('.todo');
|
||||
const todos = document.querySelectorAll('.todo').length;
|
||||
console.log(todos);
|
||||
remaining.innerText = todos;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче