| OLD | NEW |
| (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> | |
| OLD | NEW |