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

Unified Diff: third_party/pkg/angular/demo/todo/web/index.html

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/demo/todo/web/index.html
===================================================================
--- third_party/pkg/angular/demo/todo/web/index.html (revision 33054)
+++ third_party/pkg/angular/demo/todo/web/index.html (working copy)
@@ -8,32 +8,33 @@
</head>
<body ng-app>
- <div ng-hide="true" class="border well loading">Wait, Dart is loading this awesome app...</div>
+<div ng-hide="true" class="border well loading">Wait, Dart is loading this awesome app...</div>
- <div todo-controller class="border well" ng-cloak>
- <h2>Things To Do ;-)</h2>
+<div todo-controller class="border well" ng-cloak>
+ <h2>Things To Do ;-)</h2>
- <div class="right">
- <button ng-click="todo.markAllDone()" class="btn btn-small">mark all done</button>
- <button ng-click="todo.archiveDone()" class="btn btn-small">archive done</button>
- </div>
+ <div class="right">
+ <button ng-click="todo.markAllDone()" class="btn btn-small">mark all done</button>
+ <button ng-click="todo.archiveDone()" class="btn btn-small">archive done</button>
+ </div>
- <p>Remaining <b>{{todo.remaining()}}</b> of <b>{{todo.items.length}}</b> items.</p>
+ <p>Remaining <b>{{todo.remaining()}}</b> of <b>{{todo.items.length}}</b> items.</p>
- <ul class="well unstyled">
- <li ng-repeat="item in todo.items" ng-class="todo.classFor(item)">
- <label class="checkbox">
- <input type="checkbox" ng-model="item.done"> {{item.text}}
- </label>
- </li>
- </ul>
+ <ul class="well unstyled">
+ <li ng-repeat="item in todo.items" ng-class="todo.classFor(item)">
+ <label class="checkbox">
+ <input type="checkbox" ng-model="item.done"> {{item.text}}
+ </label>
+ </li>
+ </ul>
- <form class="form-inline" onsubmit="return false;">
- <input type="text" ng-model="todo.newItem.text">
- <button ng-click="todo.add()" ng-disabled="todo.newItem.isEmpty" class="btn btn-primary">add</button>
- <button ng-click="todo.newItem.clear()" ng-disabled="todo.newItem.isEmpty" class="btn">clear</button>
- </form>
- </div>
+ <form class="form-inline" onsubmit="return false;">
+ <input type="text" ng-model="todo.newItem.text">
+ <button ng-click="todo.add()" ng-disabled="todo.newItem.isEmpty" class="btn btn-primary">add</button>
+ <button ng-click="todo.newItem.clear()" ng-disabled="todo.newItem.isEmpty" class="btn">clear</button>
+ </form>
+
+</div>
</body>
</html>
« no previous file with comments | « third_party/pkg/angular/demo/helloworld/web/index.html ('k') | third_party/pkg/angular/demo/todo/web/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698