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

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

Issue 2512323002: MD Settings: In /syncSetup clicking links in checkbox label should not check/uncheck. (Closed)
Patch Set: remove outdated comment Created 4 years, 1 month 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html">
9 <link rel="import" href="/people_page/sync_browser_proxy.html"> 9 <link rel="import" href="/people_page/sync_browser_proxy.html">
10 <link rel="import" href="/route.html"> 10 <link rel="import" href="/route.html">
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 <!-- The Payments integration checkbox is a special case in many ways. 135 <!-- The Payments integration checkbox is a special case in many ways.
136 It's visible only if autofill is registered. It's disabled and 136 It's visible only if autofill is registered. It's disabled and
137 unchecked if autofill is unchecked.--> 137 unchecked if autofill is unchecked.-->
138 <paper-checkbox checked="{{syncPrefs.paymentsIntegrationEnabled}}" 138 <paper-checkbox checked="{{syncPrefs.paymentsIntegrationEnabled}}"
139 on-change="onSingleSyncDataTypeChanged_" class="list-item" 139 on-change="onSingleSyncDataTypeChanged_" class="list-item"
140 hidden="[[!syncPrefs.autofillRegistered]]" 140 hidden="[[!syncPrefs.autofillRegistered]]"
141 disabled="[[shouldPaymentsCheckboxBeDisabled_( 141 disabled="[[shouldPaymentsCheckboxBeDisabled_(
142 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]"> 142 syncPrefs.syncAllDataTypes, syncPrefs.autofillSynced)]]">
143 $i18n{enablePaymentsIntegrationCheckboxLabel} 143 $i18n{enablePaymentsIntegrationCheckboxLabel}
144 <a href="$i18nRaw{autofillHelpURL}" target="_blank"> 144 <a href="$i18nRaw{autofillHelpURL}" target="_blank"
145 id="paymentLearnMore" on-tap="stopPropagation_">
dpapad 2016/11/19 02:04:38 Nit: on-tap="onLearnMoreTap_"
scottchen 2016/11/21 18:33:46 Done.
145 $i18n{learnMore} 146 $i18n{learnMore}
146 </a> 147 </a>
147 </paper-checkbox> 148 </paper-checkbox>
148 </div> 149 </div>
149 150
150 <div class="settings-box two-line single-column" actionable 151 <div class="settings-box two-line single-column" actionable
151 on-tap="onManageSyncedDataTap_"> 152 on-tap="onManageSyncedDataTap_">
152 <div>$i18n{manageSyncedDataTitle}</div> 153 <div>$i18n{manageSyncedDataTitle}</div>
153 <div class="secondary">$i18n{manageSyncedDataDescription}</div> 154 <div class="secondary">$i18n{manageSyncedDataDescription}</div>
154 </div> 155 </div>
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 </div> 235 </div>
235 <div id="passphraseRecoverHint" class="list-item"> 236 <div id="passphraseRecoverHint" class="list-item">
236 <span>$i18nRaw{passphraseRecover}</span> 237 <span>$i18nRaw{passphraseRecover}</span>
237 </div> 238 </div>
238 </div> 239 </div>
239 </template> 240 </template>
240 </div> 241 </div>
241 </template> 242 </template>
242 <script src="sync_page.js"></script> 243 <script src="sync_page.js"></script>
243 </dom-module> 244 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698