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

Side by Side Diff: third_party/pkg/angular/demo/web/index.html

Issue 124053002: Adding Angular and dependent packages for testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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
(Empty)
1 <html ng-app>
2 <head>
3 <script src="packages/browser/dart.js"></script>
4 <script src="main.dart" type="application/dart"></script>
5 </head>
6 <body>
7 <div main-controller>
8 <h1>ng-model</h1>
9 <input type="text" ng-model="yourName">
10 <input type="text" ng-model="yourName">
11 Hello {{yourName}}!
12 <h1>A Demo of the Bind Directive</h1>
13 <div>
14 <div ng-bind="greeting"></div>
15 <div ng-bind="random()"></div>
16 </div>
17
18 <h1>A Demo of the Repeat Directive</h1>
19 <ul>
20 <li ng-repeat="name in people" ng-bind="name"></li>
21 <li ng-repeat="obj in objs" ng-bind="obj.v"></li>
22 </ul>
23
24 <h1>A Demo of Components</h1>
25 <book>
26 <chapter title="The First Act">The contents of the first act.</chapter>
27 <chapter title="The Second Act">The contents of the second act.</chapter >
28 </book>
29 </div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698