OLD | NEW |
1 <link rel="import" href="chrome://md-user-manager/create_profile.html"> | 1 <link rel="import" href="chrome://md-user-manager/create_profile.html"> |
2 <link rel="import" href="chrome://md-user-manager/supervised_user_create_confirm
.html"> | 2 <link rel="import" href="chrome://md-user-manager/supervised_user_create_confirm
.html"> |
3 <link rel="import" href="chrome://md-user-manager/supervised_user_learn_more.htm
l"> | 3 <link rel="import" href="chrome://md-user-manager/supervised_user_learn_more.htm
l"> |
4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-right-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-right-animation.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
8 | 8 |
9 <dom-module id="user-manager-pages"> | 9 <dom-module id="user-manager-pages"> |
10 <link rel="import" type="css" | |
11 href="chrome://md-user-manager/user_manager_pages.css"> | |
12 <template> | 10 <template> |
| 11 <style> |
| 12 neon-animated-pages { |
| 13 height: 100%; |
| 14 } |
| 15 |
| 16 neon-animated-pages > div { |
| 17 display: flex; |
| 18 justify-content: center; |
| 19 } |
| 20 </style> |
13 <neon-animated-pages id="animatedPages" attr-for-selected="id" | 21 <neon-animated-pages id="animatedPages" attr-for-selected="id" |
14 selected="[[selectedPage_]]" entry-animation="slide-from-left-animation" | 22 selected="[[selectedPage_]]" entry-animation="slide-from-left-animation" |
15 exit-animation="slide-right-animation"> | 23 exit-animation="slide-right-animation"> |
16 <div id="create-user-page"> | 24 <div id="create-user-page"> |
17 <template is="dom-if" | 25 <template is="dom-if" |
18 if="[[isPageVisible_(selectedPage_, 'create-user-page')]]" restamp> | 26 if="[[isPageVisible_(selectedPage_, 'create-user-page')]]" restamp> |
19 <create-profile></create-profile> | 27 <create-profile></create-profile> |
20 </template> | 28 </template> |
21 </div> | 29 </div> |
22 <div id="user-pods-page"> | 30 <div id="user-pods-page"> |
(...skipping 14 matching lines...) Expand all Loading... |
37 if="[[isPageVisible_(selectedPage_, 'supervised-create-confirm-page'
)]]"> | 45 if="[[isPageVisible_(selectedPage_, 'supervised-create-confirm-page'
)]]"> |
38 <supervised-user-create-confirm profile-info="[[pageData_]]"> | 46 <supervised-user-create-confirm profile-info="[[pageData_]]"> |
39 </supervised-user-create-confirm> | 47 </supervised-user-create-confirm> |
40 </template> | 48 </template> |
41 </div> | 49 </div> |
42 <content></content> | 50 <content></content> |
43 </neon-animated-pages> | 51 </neon-animated-pages> |
44 </template> | 52 </template> |
45 <script src="chrome://md-user-manager/user_manager_pages.js"></script> | 53 <script src="chrome://md-user-manager/user_manager_pages.js"></script> |
46 </dom-module> | 54 </dom-module> |
OLD | NEW |