aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch02-01-module-example.html
blob: 97432e359f4546c936d0d11c3271b89e0c113db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html ng-app="notesApp">
<head>
    <title>Hello AngularJS</title>

    <script src="../../tp/angular.js"></script>
</head>
<body>
    Hello {{1 + 1}}nd time AngularJS

    <script type="text/javascript">
        angular.module('notesApp', []);
    </script>

</body>
</html>