| <link rel="import" href="chrome://md-user-manager/create_profile.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/slide-from-left-animation.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/slide-right-animation.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animated-pages.html"> |
| <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| |
| <dom-module id="user-manager-pages"> |
| <link rel="import" type="css" |
| href="chrome://md-user-manager/user_manager_pages.css"> |
| <template> |
| <neon-animated-pages id="animatedPages" attr-for-selected="id" |
| selected="[[selectedPage_]]" entry-animation="slide-from-left-animation" |
| exit-animation="slide-right-animation"> |
| <div id="create-user-page"> |
| <template is="dom-if" if="[[isPageVisible_(selectedPage_, 'create-user-page')]]" restamp> |
| <create-profile></create-profile> |
| </template> |
| </div> |
| <div id="user-pods-page"> |
| <template is="dom-if" if="[[isPageVisible_(selectedPage_, 'user-pods-page')]]"> |
| <content></content> |
| </template> |
| </div> |
| </neon-animated-pages> |
| </template> |
| <script src="chrome://md-user-manager/user_manager_pages.js"></script> |
| </dom-module> |