fac-14 / teamcoolerweek-2

To-do-list project
1 stars 1 forks source link

NEXT STEP: add in 'done: true' to 'state' object (dom.js and test.js) #3

Closed njons closed 6 years ago

njons commented 6 years ago

make code in both dom.js and test.js the following:

var state = [ { id: -3, description: 'first todo', done: true }, { id: -2, description: 'second todo', done: false }, { id: -1, description: 'third todo', done: false } ]; to test that the css class has been added when you check items as marked

sbinlondon commented 6 years ago

Functionality done :blush: