From 3a197e879a69acc595a0f2e1bedffc70df36af8c Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Tue, 26 Feb 2019 08:57:32 -0800 Subject: [PATCH] fixed step 3 bug --- step1-02/demo/index.html | 14 -------------- step1-03/final/index.html | 3 ++- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/step1-02/demo/index.html b/step1-02/demo/index.html index 7d13230..e69de29 100644 --- a/step1-02/demo/index.html +++ b/step1-02/demo/index.html @@ -1,14 +0,0 @@ - - - - - -
-

-
- -
-
- - - diff --git a/step1-03/final/index.html b/step1-03/final/index.html index b8a52a6..0222d11 100644 --- a/step1-03/final/index.html +++ b/step1-03/final/index.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; }