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

Side by Side Diff: third_party/pkg/angular/example/web/animation.dart

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
(Empty)
1 library animation;
2
3 import 'package:angular/angular.dart';
4 import 'package:angular/application_factory.dart';
5 import 'package:angular/animate/module.dart';
6
7 part 'animation/repeat_demo.dart';
8 part 'animation/visibility_demo.dart';
9 part 'animation/stress_demo.dart';
10 part 'animation/css_demo.dart';
11
12 @Controller(
13 selector: '[animation-demo]',
14 publishAs: 'demo')
15 class AnimationDemo {
16 final pages = ["About", "ng-repeat", "Visibility", "Css", "Stress Test"];
17 var currentPage = "About";
18 }
19
20 class AnimationDemoModule extends Module {
21 AnimationDemoModule() {
22 install(new AnimationModule());
23 type(RepeatDemo);
24 type(VisibilityDemo);
25 type(StressDemo);
26 type(CssDemo);
27 type(AnimationDemo);
28 }
29 }
30 main() {
31 applicationFactory()
32 .addModule(new AnimationDemoModule())
33 .run();
34 }
OLDNEW
« no previous file with comments | « third_party/pkg/angular/example/pubspec.yaml ('k') | third_party/pkg/angular/example/web/animation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698