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

Side by Side Diff: chrome/browser/resources/settings/controls/settings_toggle_button.js

Issue 2661533002: MD Settings: fix settings-toggle-button label text overflow. (Closed)
Patch Set: do text-elide and no-min-width in a cleaner way 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 6 * @fileoverview
7 * `settings-toggle-button` is a toggle that controls a supplied preference. 7 * `settings-toggle-button` is a toggle that controls a supplied preference.
8 */ 8 */
9 Polymer({ 9 Polymer({
10 is: 'settings-toggle-button', 10 is: 'settings-toggle-button',
11 11
12 properties: {
13 elideLabel: {
14 type: Boolean,
15 reflectToAttribute: true,
16 },
17 },
18
12 behaviors: [SettingsBooleanControlBehavior], 19 behaviors: [SettingsBooleanControlBehavior],
13 20
14 /** @private */ 21 /** @private */
15 onLabelWrapperTap_: function() { 22 onLabelWrapperTap_: function() {
16 if (!this.controlDisabled_()) 23 if (!this.controlDisabled_())
17 this.checked = !this.checked; 24 this.checked = !this.checked;
18 }, 25 },
19 }); 26 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698