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

Side by Side Diff: chrome/browser/resources/md_user_manager/create_profile.html

Issue 2124593002: MD User Manager: Hides 'import supervised user' link while loading supervised users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="/import_supervised_user.html"> 1 <link rel="import" href="/import_supervised_user.html">
2 <link rel="import" href="/profile_browser_proxy.html"> 2 <link rel="import" href="/profile_browser_proxy.html">
3 <link rel="import" href="/shared_styles.html"> 3 <link rel="import" href="/shared_styles.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select or/cr_profile_avatar_selector.html"> 4 <link rel="import" href="chrome://resources/cr_elements/cr_profile_avatar_select or/cr_profile_avatar_selector.html">
5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 5 <link rel="import" href="chrome://resources/cr_elements/icons.html">
6 <link rel="import" href="chrome://resources/html/action_link.html"> 6 <link rel="import" href="chrome://resources/html/action_link.html">
7 <link rel="import" href="chrome://resources/html/cr.html"> 7 <link rel="import" href="chrome://resources/html/cr.html">
8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
9 <link rel="import" href="chrome://resources/html/polymer.html"> 9 <link rel="import" href="chrome://resources/html/polymer.html">
10 <link rel="import" href="chrome://resources/html/util.html"> 10 <link rel="import" href="chrome://resources/html/util.html">
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 attr-for-selected="data-user-index"> 177 attr-for-selected="data-user-index">
178 <template is="dom-repeat" items="[[signedInUsers_]]"> 178 <template is="dom-repeat" items="[[signedInUsers_]]">
179 <paper-item data-user-index$="[[index]]"> 179 <paper-item data-user-index$="[[index]]">
180 [[item.username]] 180 [[item.username]]
181 </paper-item> 181 </paper-item>
182 </template> 182 </template>
183 </paper-listbox> 183 </paper-listbox>
184 </paper-dropdown-menu> 184 </paper-dropdown-menu>
185 <a id="import-user" is="action-link" on-tap="onImportUserTap_" 185 <a id="import-user" is="action-link" on-tap="onImportUserTap_"
186 hidden="[[isImportUserLinkHidden_(createInProgress_, 186 hidden="[[isImportUserLinkHidden_(createInProgress_,
187 loadingSupervisedUsers_,
187 signedInUserIndex_)]]"> 188 signedInUserIndex_)]]">
188 $i18n{importExistingSupervisedUserLink} 189 $i18n{importExistingSupervisedUserLink}
189 </a> 190 </a>
190 </template> 191 </template>
191 <div id="sign-in-howto-message" 192 <div id="sign-in-howto-message"
192 hidden="[[isSignedIn_(signedInUsers_)]]" 193 hidden="[[isSignedIn_(signedInUsers_)]]"
193 inner-h-t-m-l="[[i18nAllowIDAttr_('noSignedInUserMessage')]]"> 194 inner-h-t-m-l="[[i18nAllowIDAttr_('noSignedInUserMessage')]]">
194 </div> 195 </div>
195 </template> 196 </template>
196 </div> 197 </div>
(...skipping 10 matching lines...) Expand all
207 loadingSupervisedUsers_, 208 loadingSupervisedUsers_,
208 profileName_)]]"> 209 profileName_)]]">
209 $i18n{createProfileConfirm} 210 $i18n{createProfileConfirm}
210 </paper-button> 211 </paper-button>
211 </div> 212 </div>
212 <import-supervised-user id="importUserPopup"></import-supervised-user> 213 <import-supervised-user id="importUserPopup"></import-supervised-user>
213 </div> 214 </div>
214 </template> 215 </template>
215 <script src="create_profile.js"></script> 216 <script src="create_profile.js"></script>
216 </dom-module> 217 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/create_profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698