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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2788673003: WebUI: For cr-dialog, make Enter click the action-button, if it exists. (Closed)
Patch Set: change closure annotations Created 3 years, 8 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/settings/reset_page/powerwash_dialog.html » ('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="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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 page-title="$i18n{editPerson}"> 368 page-title="$i18n{editPerson}">
369 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" 369 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]"
370 profile-name="[[profileName_]]" sync-status="[[syncStatus]]"> 370 profile-name="[[profileName_]]" sync-status="[[syncStatus]]">
371 </settings-manage-profile> 371 </settings-manage-profile>
372 </settings-subpage> 372 </settings-subpage>
373 </template> 373 </template>
374 </if> 374 </if>
375 </settings-animated-pages> 375 </settings-animated-pages>
376 376
377 <template is="dom-if" if="[[showDisconnectDialog_]]" restamp> 377 <template is="dom-if" if="[[showDisconnectDialog_]]" restamp>
378 <dialog is="cr-dialog" id="disconnectDialog" ignore-popstate 378 <dialog is="cr-dialog" id="disconnectDialog"
379 ignore-popstate ignore-enter-key
379 on-close="onDisconnectClosed_" close-text="$i18n{close}"> 380 on-close="onDisconnectClosed_" close-text="$i18n{close}">
380 <div class="title">$i18n{syncDisconnectTitle}</div> 381 <div class="title">$i18n{syncDisconnectTitle}</div>
381 <div class="body"> 382 <div class="body">
382 <div inner-h-t-m-l="[[ 383 <div inner-h-t-m-l="[[
383 getDisconnectExplanationHtml_(syncStatus.domain)]]"> 384 getDisconnectExplanationHtml_(syncStatus.domain)]]">
384 </div> 385 </div>
385 </div> 386 </div>
386 <div class="button-container"> 387 <div class="button-container">
387 <paper-button on-tap="onDisconnectCancel_" class="cancel-button"> 388 <paper-button on-tap="onDisconnectCancel_" class="cancel-button">
388 $i18n{cancel} 389 $i18n{cancel}
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 <if expr="chromeos"> 430 <if expr="chromeos">
430 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 431 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
431 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 432 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
432 on-close="onEasyUnlockTurnOffDialogClose_"> 433 on-close="onEasyUnlockTurnOffDialogClose_">
433 </easy-unlock-turn-off-dialog> 434 </easy-unlock-turn-off-dialog>
434 </template> 435 </template>
435 </if> 436 </if>
436 </template> 437 </template>
437 <script src="people_page.js"></script> 438 <script src="people_page.js"></script>
438 </dom-module> 439 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/reset_page/powerwash_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698