aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/js/ch03-controller.js
blob: 92d3b0c057f66468c1cd94fba823b29483a7f06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Simple controller

angular.module('notesApp', [])
    .controller('ListCtrl', [function () {
        var self = this;
        self.items = [
            {id: 1, label: 'First', done: true},
            {id: 2, label: 'Second', done: false}
        ];

        self.getDoneClass = function (item) {
            return {
                finished: item.done,
                unfinished: !item.done
            };
        };
    }]);