You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.5 KiB

#### Functional
##### Open the documentation file.
###### Is the documentation written in a markdown file?
###### Does the documentation contains an explanation of every feature of the framework?
###### Does the documentation contains an explanation and code examples on how to create an element, add attributes to an element, create an event and nest elements?
###### Does the documentation contains an explanation on how the framework works?
4 years ago
##### Open the todoMVC project and compare it to other [todoMVC project](http://todomvc.com/) ([example](http://todomvc.com/examples/vanillajs/)).
4 years ago
###### Does it contain every element as the other todoMVCs examples?
4 years ago
##### Open the Web Developer Tools (Ctrl+Shift+I) and check for the classes, ids, etc.
4 years ago
###### Does it correctly correspond to those in the examples?
###### Can you add a to-do element to the to-do list?
###### When you add a to-do element to the list, does the footer (element with class footer) appear as in other examples?
###### Can you check/uncheck a to-do element on the list?
###### Can you remove a to-do element off the list?
##### Add at least 2 to-dos and select only one of them.
###### If you click on the **Active** button, do only the unchecked to-dos appear?
###### And if you click on the **Completed** button, do only the checked to-dos appear?
4 years ago
###### Does a **Clear Completed** button to-dos appear?
4 years ago
###### When clicking on the clear completed button, does it remove only the checked to-dos?
4 years ago
###### When clicking on the **Active** and **Completed** buttons, does the URL change?
##### Add 3 to-dos to the list and check each one, keeping an eye on the counter of to-dos left to do.
4 years ago
###### Does the counter change accordingly to your actions?
###### If you double click a to-do element on the list can you edit that element?
#### Basic
###### +Does the code obey the [good practices](../../good-practices/README.md)?
#### Bonus
4 years ago
###### +Is the performance similar both in the student todoMVC and other examples?
###### +Is it easier to handle the DOM using the framework than it is to use plain HTML and JS?
###### +Is it easier to handle the routing in JS using the framework?
###### +Does the project runs quickly and effectively? (Favoring recursivity, no unnecessary data requests, etc...)
###### +Is the code using synchronicity to increase performance?
###### +Do you think this project is well done in general?
#### Social
###### +Did you learn anything from this project?
###### +Would you recommend/nominate this program as an example for the rest of the school?