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

Side by Side Diff: third_party/pkg/angular/demo/bouncing_balls/bouncy_balls.dart

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 import 'package:angular/angular.dart'; 1 import 'package:angular/angular.dart';
2 import 'dart:html'; 2 import 'dart:html';
3 import 'dart:math'; 3 import 'dart:math';
4 import 'dart:core'; 4 import 'dart:core';
5 5
6 var random = new Random(); 6 var random = new Random();
7 var width = 400; 7 var width = 400;
8 var height = 400; 8 var height = 400;
9 var speed = .05; 9 var speed = .05;
10 10
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 class MyModule extends Module { 119 class MyModule extends Module {
120 MyModule() { 120 MyModule() {
121 type(BounceController); 121 type(BounceController);
122 type(BallPositionDirective); 122 type(BallPositionDirective);
123 } 123 }
124 } 124 }
125 125
126 main() { 126 main() {
127 ngBootstrap(module: new MyModule()); 127 ngBootstrap(module: new MyModule());
128 } 128 }
OLDNEW
« no previous file with comments | « third_party/pkg/angular/bin/parser_generator_for_spec.dart ('k') | third_party/pkg/angular/demo/bouncing_balls/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698