Scaffolding out readmes

This commit is contained in:
Micah Godbolt
2019-02-20 23:23:57 -08:00
parent 756c948ce3
commit fe0be0154d
7 changed files with 52 additions and 19 deletions

18
step1-03/README.md Normal file
View File

@@ -0,0 +1,18 @@
Demo
already done
- addTodo
- filter
- filter()
- getTodoText
Walk through 'addTodo'
attach addTodo to button
write clearInput/add to addTodo
write updateRemaining
## Exercise
write clearCompleted
add to footer button

View File

@@ -42,7 +42,7 @@
return document.querySelector('.textfield').value;
}
function clearInput(selector) {
function clearInput() {
document.querySelector('.textfield').value = '';
}