From fdceb93839debcd6cc91f28ac2fc33707ac899ad Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Wed, 27 Feb 2019 17:38:16 -0800 Subject: [PATCH] clarify which function is added to which attribute in step 3 exercise. fixes #29 --- step1-03/exercise/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/step1-03/exercise/README.md b/step1-03/exercise/README.md index 093f104..d0d35d1 100644 --- a/step1-03/exercise/README.md +++ b/step1-03/exercise/README.md @@ -20,5 +20,5 @@ > Hint: you can use querySelector on any HTML node to find child elements within. 4. Call `todo.remove()` for any todo whos input check is true. 5. After the loop is done, run `updateRemaining()`. -6. Attach this function to the footer button. +6. Attach `clearCompleted()` function to the `onclick` of the footer button. 7. Test it out!