blob: 5c8a4b13aacf49e67b9f52d0cb1f136953e470b9 [file] [log] [blame]
Simon Huntd7c203c2014-12-09 16:51:49 -08001<!DOCTYPE html>
2<html ng-app="notesApp">
3<head>
4 <title>Notes App</title>
5 <script src="../../tp/angular.js"></script>
6 <style>
7 span {
8 background-color: #cce;
9 }
10 </style>
11</head>
12<body ng-controller="MainCtrl as ctrl">
13
14<input type="text" ng-model="ctrl.username"/>
15You typed {{ctrl.username}}
16
17
18<script type="text/javascript">
19 angular.module('notesApp', []).controller('MainCtrl', [
20 function () {
21 var self = this;
22 self.username = 'nothing';
23 }
24 ]);
25</script>
26
27</body>
28</html>