This commit is contained in:
Armen Vartan 2014-12-01 16:37:19 -05:00
parent d3d182e9da
commit c07d7f9c4c

View File

@ -7,7 +7,7 @@ But until then, we will do it in front-end Javascript.
You will find the toDoList prototype and constructor at the top of the main.js file.
###Create the List
#### Create the List
The add method adds a todo to the list, using the text input and form.
@ -17,7 +17,7 @@ Use toggle to toggle it done struck and unstruck.
Feel free to add any other methods, lists or objects you may want. You will want a separate function to print the list to the #printout div.
###Woah! Client's demands have changed
#### Woah! Client's demands have changed
Now the client who was going to buy your sweet todo list wants a new feature. Is it going to break your whole code, or is your code modular and extendable?