OLD | NEW |
---|---|
1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> |
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> |
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
5 <link rel="import" href="chrome://resources/html/icon.html"> | 5 <link rel="import" href="chrome://resources/html/icon.html"> |
6 <link rel="import" href="chrome://resources/html/polymer.html"> | 6 <link rel="import" href="chrome://resources/html/polymer.html"> |
7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> |
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
101 } | 101 } |
102 </style> | 102 </style> |
103 <settings-animated-pages id="pages" section="people"> | 103 <settings-animated-pages id="pages" section="people"> |
104 <neon-animatable route-path="default"> | 104 <neon-animatable route-path="default"> |
105 <div id="picture-subpage-trigger" class="settings-box first two-line"> | 105 <div id="picture-subpage-trigger" class="settings-box first two-line"> |
106 <template is="dom-if" if="[[syncStatus]]"> | 106 <template is="dom-if" if="[[syncStatus]]"> |
107 <div id="profile-icon" on-tap="onPictureTap_" actionable | 107 <div id="profile-icon" on-tap="onPictureTap_" actionable |
108 style="background-image: [[getIconImageset_(profileIconUrl_)]]"> | 108 style="background-image: [[getIconImageset_(profileIconUrl_)]]"> |
109 </div> | 109 </div> |
110 <if expr="not chromeos"> | 110 <if expr="not chromeos"> |
111 <div class="middle two-line" on-tap="onProfileNameTap_" actionable> | 111 <div class="middle two-line text-elide" on-tap="onProfileNameTap_" a ctionable> |
112 </if> | 112 </if> |
113 <if expr="chromeos"> | 113 <if expr="chromeos"> |
114 <div class="middle two-line" on-tap="onPictureTap_" actionable> | 114 <div class="middle two-line text-elide" on-tap="onPictureTap_" actio nable> |
Dan Beam
2017/01/11 21:59:01
80 col wrap
| |
115 </if> | 115 </if> |
116 <div class="flex"> | 116 <div class="flex"> |
117 <span id="profile-name">[[profileName_]]</span> | 117 <span id="profile-name">[[profileName_]]</span> |
118 <div class="secondary" hidden="[[!syncStatus.signedIn]]"> | 118 <div class="secondary" hidden="[[!syncStatus.signedIn]]"> |
119 [[syncStatus.signedInUsername]] | 119 [[syncStatus.signedInUsername]] |
120 </div> | 120 </div> |
121 </div> | 121 </div> |
122 <button class="subpage-arrow" is="paper-icon-button-light"> | 122 <button class="subpage-arrow" is="paper-icon-button-light"> |
123 </button> | 123 </button> |
124 </div> | 124 </div> |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
389 <if expr="chromeos"> | 389 <if expr="chromeos"> |
390 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> | 390 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> |
391 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 391 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
392 on-close="onEasyUnlockTurnOffDialogClose_"> | 392 on-close="onEasyUnlockTurnOffDialogClose_"> |
393 </easy-unlock-turn-off-dialog> | 393 </easy-unlock-turn-off-dialog> |
394 </template> | 394 </template> |
395 </if> | 395 </if> |
396 </template> | 396 </template> |
397 <script src="people_page.js"></script> | 397 <script src="people_page.js"></script> |
398 </dom-module> | 398 </dom-module> |
OLD | NEW |