OLD | NEW |
(Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-right-animation.html"> |
| 5 |
| 6 <dom-module id="user-manager-pages"> |
| 7 <link rel="stylesheet" type="css" href="user_manager_pages.css"> |
| 8 <template> |
| 9 <neon-animated-pages id="animatedPages" attr-for-selected="id" selected="[[sel
ectedPage]]" |
| 10 entry-animation="slide-from-left-animation" exit-animation="slide-right-an
imation"> |
| 11 <content></content> |
| 12 </neon-animated-pages> |
| 13 </template> |
| 14 <script src="chrome://md-user-manager/user_manager_pages.js"></script> |
| 15 </dom-module> |
OLD | NEW |