| Index: third_party/pkg/angular/example/web/animation.dart
|
| diff --git a/third_party/pkg/angular/example/web/animation.dart b/third_party/pkg/angular/example/web/animation.dart
|
| deleted file mode 100644
|
| index e2c915bbb810f95cdffd03784256b9ff8fd96133..0000000000000000000000000000000000000000
|
| --- a/third_party/pkg/angular/example/web/animation.dart
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -library animation;
|
| -
|
| -import 'package:angular/angular.dart';
|
| -import 'package:angular/application_factory.dart';
|
| -import 'package:angular/animate/module.dart';
|
| -
|
| -part 'animation/repeat_demo.dart';
|
| -part 'animation/visibility_demo.dart';
|
| -part 'animation/stress_demo.dart';
|
| -part 'animation/css_demo.dart';
|
| -
|
| -@Controller(
|
| - selector: '[animation-demo]',
|
| - publishAs: 'demo')
|
| -class AnimationDemo {
|
| - final pages = ["About", "ng-repeat", "Visibility", "Css", "Stress Test"];
|
| - var currentPage = "About";
|
| -}
|
| -
|
| -class AnimationDemoModule extends Module {
|
| - AnimationDemoModule() {
|
| - install(new AnimationModule());
|
| - type(RepeatDemo);
|
| - type(VisibilityDemo);
|
| - type(StressDemo);
|
| - type(CssDemo);
|
| - type(AnimationDemo);
|
| - }
|
| -}
|
| -main() {
|
| - applicationFactory()
|
| - .addModule(new AnimationDemoModule())
|
| - .run();
|
| -}
|
|
|