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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/neon-animation/neon-animated-pages.html

Issue 1410143002: Update Polymer to fix closure compile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iron-list5
Patch Set: Created 5 years, 2 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
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 2 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
6 Code distributed by Google as part of the polymer project is also 6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
8 --><html><head><link rel="import" href="../polymer/polymer.html"> 8 --><html><head><link rel="import" href="../polymer/polymer.html">
9 <link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html "> 9 <link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html ">
10 <link rel="import" href="../iron-selector/iron-selectable.html"> 10 <link rel="import" href="../iron-selector/iron-selectable.html">
11 <link rel="import" href="neon-animation-runner-behavior.html"> 11 <link rel="import" href="neon-animation-runner-behavior.html">
12 <link rel="import" href="animations/opaque-animation.html"> 12 <link rel="import" href="animations/opaque-animation.html">
13 13
14 <!-- 14 <!--
15 Material design: [Meaningful transitions](https://www.google.com/design/spec/ani mation/meaningful-transitions.html)
16
15 `neon-animated-pages` manages a set of pages and runs an animation when switchin g between them. Its 17 `neon-animated-pages` manages a set of pages and runs an animation when switchin g between them. Its
16 children pages should implement `Polymer.NeonAnimatableBehavior` and define `ent ry` and `exit` 18 children pages should implement `Polymer.NeonAnimatableBehavior` and define `ent ry` and `exit`
17 animations to be run when switching to or switching out of the page. 19 animations to be run when switching to or switching out of the page.
18 20
19 @group Neon Elements 21 @group Neon Elements
20 @element neon-animated-pages 22 @element neon-animated-pages
21 @demo demo/index.html 23 @demo demo/index.html
22 --> 24 -->
23 25
24 </head><body><dom-module id="neon-animated-pages"> 26 </head><body><dom-module id="neon-animated-pages">
(...skipping 24 matching lines...) Expand all
49 51
50 </style> 52 </style>
51 53
52 <template> 54 <template>
53 <content id="content"></content> 55 <content id="content"></content>
54 </template> 56 </template>
55 57
56 </dom-module> 58 </dom-module>
57 59
58 <script src="neon-animated-pages-extracted.js"></script></body></html> 60 <script src="neon-animated-pages-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698