aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch02-03-hello-controller.html
blob: c206bf8edd1947745f9874bc94731bf1764e6082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html ng-app="notesApp">
<head>
    <title>Notes App</title>
    <script src="../../tp/angular.js"></script>
</head>
<body ng-controller="MainCtrl as ctrl">
    {{ctrl.helloMsg}} AngularJS.
    <br/>
    {{ctrl.goodbyeMsg}} AngularJS

    <script type="text/javascript">
        angular.module('notesApp', [])
                .controller('MainCtrl', [function () {
                    this.helloMsg = 'Hello ';
                    var goodbyeMsg = 'Goodbye ';
                }]);
    </script>

</body>
</html>