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

Unified Diff: third_party/pkg/angular/example/web/animation.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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/example/web/animation.html
diff --git a/third_party/pkg/angular/example/web/animation.html b/third_party/pkg/angular/example/web/animation.html
new file mode 100644
index 0000000000000000000000000000000000000000..d0728b00b43ed4177fabd6486470034942c6ce69
--- /dev/null
+++ b/third_party/pkg/angular/example/web/animation.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>NgAnimate | Demos, Stress Tests, Examples and More!</title>
+ <link type="text/css" rel="stylesheet" href="css/animation.css" />
+</head>
+<body class="ng-cloak" ng-app animation-demo>
+ <nav>
+ <button ng-repeat="page in demo.pages"
+ ng-click="demo.currentPage = page"
+ ng-class="{'current': demo.currentPage == page}">
+ {{page}}
+ </button>
+ </nav>
+ <div class="content" ng-switch="demo.currentPage">
+ <div class="demo" ng-switch-default>
+ <h2>About</h2>
+ <p>The NgAnimate module is a port with modifications of the original
+ AngularJS animation module. The default implementation does nothing.
+ It simply provides hooks into the angular subsystem. Adding
+ <code>AnimationModule</code> however is a whole different story. Once
+ added it allows you define and run css animations on your elements with
+ pure CSS.</p>
+ <p>Check out the demos above.</p>
+ </div>
+ <div class="demo" ng-switch-when="ng-repeat">
+ <h2>ng-repeat Demo</h2>
+ <repeat-demo></repeat-demo>
+ </div>
+ <div class="demo" ng-switch-when="Visibility">
+ <h2>Visibility Demo</h2>
+ <visibility-demo></visibility-demo>
+ </div>
+ <div class="demo" ng-switch-when="Css">
+ <h2>Css Demo</h2>
+ <css-demo></css-demo>
+ </div>
+ <div class="demo" ng-switch-when="Stress Test">
+ <h2>Stress Test</h2>
+ <stress-demo></stress-demo>
+ </div>
+ </div>
+<script type="application/dart" src="animation.dart"></script>
+<script src="packages/browser/dart.js"></script>
+</body>
+</html>
« no previous file with comments | « third_party/pkg/angular/example/web/animation.dart ('k') | third_party/pkg/angular/example/web/animation/css_demo.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698