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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.js

Issue 2702523005: MD Settings: long dialog body should have overscroll line. (Closed)
Patch Set: Created 3 years, 10 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 'password-edit-dialog' is the dialog that allows showing a 6 * @fileoverview 'password-edit-dialog' is the dialog that allows showing a
7 * saved password. 7 * saved password.
8 */ 8 */
9 (function() { 9 (function() {
10 'use strict'; 10 'use strict';
11 11
12 Polymer({ 12 Polymer({
13 is: 'settings-address-edit-dialog', 13 is: 'settings-address-edit-dialog',
14 14
15 behaviors: [ 15 behaviors: [
16 I18nBehavior, 16 I18nBehavior,
17 CrScrollableBehavior
dpapad 2017/02/18 00:37:17 CrScrollableBehavior as advertized is meant to be
scottchen 2017/02/18 01:18:56 I could copy just the scroll-class-attaching part
stevenjb 2017/02/21 19:38:13 I think that using CrScrollableBehavior here is fi
17 ], 18 ],
18 19
19 properties: { 20 properties: {
20 /** @type {chrome.autofillPrivate.AddressEntry} */ 21 /** @type {chrome.autofillPrivate.AddressEntry} */
21 address: Object, 22 address: Object,
22 23
23 /** @private */ 24 /** @private */
24 title_: String, 25 title_: String,
25 26
26 /** @private {!Array<!chrome.autofillPrivate.CountryEntry>} */ 27 /** @private {!Array<!chrome.autofillPrivate.CountryEntry>} */
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 }); 339 });
339 }, 340 },
340 }; 341 };
341 342
342 return { 343 return {
343 AddressComponentUI: AddressComponentUI, 344 AddressComponentUI: AddressComponentUI,
344 CountryDetailManager: CountryDetailManager, 345 CountryDetailManager: CountryDetailManager,
345 CountryDetailManagerImpl: CountryDetailManagerImpl, 346 CountryDetailManagerImpl: CountryDetailManagerImpl,
346 }; 347 };
347 }); 348 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698