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

Side by Side Diff: third_party/pkg/angular/example/web/bouncing_balls.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 <title>Hello, World!</title> 4 <title>Bouncing balls</title>
5 <style> 5 <style>
6 .balls { 6 .balls {
7 border: 1px solid black; 7 border: 1px solid black;
8 width: 420px; 8 width: 420px;
9 height: 420px; 9 height: 420px;
10 margin: 5px; 10 margin: 5px;
11 } 11 }
12 12
13 .ball { 13 .ball {
14 display: inline-block; 14 display: inline-block;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 <br> 58 <br>
59 <a href ng-click="bounce.changeCount(-1)">-1</a> 59 <a href ng-click="bounce.changeCount(-1)">-1</a>
60 <a href ng-click="bounce.changeCount(-10)">-10</a> 60 <a href ng-click="bounce.changeCount(-10)">-10</a>
61 <a href ng-click="bounce.changeCount(-100)">-100</a> 61 <a href ng-click="bounce.changeCount(-100)">-100</a>
62 <br> 62 <br>
63 <a href ng-click="bounce.playPause()">&#x25B6;&#10073;&#10073;</a> <br> 63 <a href ng-click="bounce.playPause()">&#x25B6;&#10073;&#10073;</a> <br>
64 <a href ng-click="bounce.toggleCSS()">Toggle CSS</a><br> 64 <a href ng-click="bounce.toggleCSS()">Toggle CSS</a><br>
65 <a href ng-click="bounce.timeDigest()">noop</a><br> 65 <a href ng-click="bounce.timeDigest()">noop</a><br>
66 </div> 66 </div>
67 67
68 <script type="application/dart" src="bouncy_balls.dart"></script> 68 <script type="application/dart" src="bouncing_balls.dart"></script>
69 <script src="packages/browser/dart.js"></script> 69 <script src="packages/browser/dart.js"></script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW
« no previous file with comments | « third_party/pkg/angular/example/web/bouncing_balls.dart ('k') | third_party/pkg/angular/example/web/css/animation.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698