Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: third_party/pkg/angular/example/web/todo.html

Issue 257423008: Update all Angular libs (run update_all.sh). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « third_party/pkg/angular/example/web/todo.dart ('k') | third_party/pkg/angular/example/web/webserver.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698