blob: 92d3b0c057f66468c1cd94fba823b29483a7f06e [file] [log] [blame]
Simon Hunt449630f2014-12-09 11:40:00 -08001// Simple controller
2
3angular.module('notesApp', [])
4 .controller('ListCtrl', [function () {
5 var self = this;
6 self.items = [
7 {id: 1, label: 'First', done: true},
8 {id: 2, label: 'Second', done: false}
9 ];
10
11 self.getDoneClass = function (item) {
12 return {
13 finished: item.done,
14 unfinished: !item.done
15 };
16 };
17 }]);