Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
fix(todo demo): Return the correct CSS class for TODO items in the demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasper Lund authored and jbdeboer committed Dec 10, 2013
1 parent 058c8ee commit 217a57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/todo/todo.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class TodoController {
}

String classFor(Item item) {
item.done ? 'done' : '';
return item.done ? 'done' : '';
}

int remaining() {
Expand Down

0 comments on commit 217a57e

Please sign in to comment.