OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="css/bootstrap.css"> | 4 <link rel="stylesheet" href="css/bootstrap.css"> |
5 <link rel="stylesheet" href="css/todo.css"> | 5 <link rel="stylesheet" href="css/todo.css"> |
6 <title>Things To Do</title> | 6 <title>Things To Do</title> |
7 <script src="todo.dart" type="application/dart"></script> | 7 <script src="todo.dart" type="application/dart"></script> |
8 <script src="packages/browser/dart.js"></script> | 8 <script src="packages/browser/dart.js"></script> |
9 </head> | 9 </head> |
10 <body ng-app> | 10 <body ng-app> |
(...skipping 20 matching lines...) Expand all Loading... |
31 </ul> | 31 </ul> |
32 | 32 |
33 <form class="form-inline" onsubmit="return false;"> | 33 <form class="form-inline" onsubmit="return false;"> |
34 <input type="text" ng-model="todo.newItem.text"> | 34 <input type="text" ng-model="todo.newItem.text"> |
35 <button ng-click="todo.add()" ng-disabled="todo.newItem.isEmpty" cla
ss="btn btn-primary">add</button> | 35 <button ng-click="todo.add()" ng-disabled="todo.newItem.isEmpty" cla
ss="btn btn-primary">add</button> |
36 <button ng-click="todo.newItem.clear()" ng-disabled="todo.newItem.is
Empty" class="btn">clear</button> | 36 <button ng-click="todo.newItem.clear()" ng-disabled="todo.newItem.is
Empty" class="btn">clear</button> |
37 </form> | 37 </form> |
38 </div> | 38 </div> |
39 </body> | 39 </body> |
40 </html> | 40 </html> |
OLD | NEW |