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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-radio-group/paper-radio-group-extracted.js

Issue 2715763002: MD-Settings A11y: Disable radio list if all options are disabled. (Closed)
Patch Set: fix closure Created 3 years, 9 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 Polymer({ 1 Polymer({
2 is: 'paper-radio-group', 2 is: 'paper-radio-group',
3 3
4 behaviors: [ 4 behaviors: [
5 Polymer.IronMenubarBehavior 5 Polymer.IronMenubarBehavior
6 ], 6 ],
7 7
8 hostAttributes: { 8 hostAttributes: {
9 role: 'radiogroup', 9 role: 'radiogroup',
10 tabindex: 0
11 }, 10 },
12 11
13 properties: { 12 properties: {
14 /** 13 /**
15 * Fired when the radio group selection changes. 14 * Fired when the radio group selection changes.
16 * 15 *
17 * @event paper-radio-group-changed 16 * @event paper-radio-group-changed
18 */ 17 */
19 18
20 /** 19 /**
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 100
102 _onLeftKey: function(event) { 101 _onLeftKey: function(event) {
103 Polymer.IronMenubarBehaviorImpl._onLeftKey.apply(this, arguments); 102 Polymer.IronMenubarBehaviorImpl._onLeftKey.apply(this, arguments);
104 this._activateFocusedItem(); 103 this._activateFocusedItem();
105 }, 104 },
106 105
107 _onRightKey: function(event) { 106 _onRightKey: function(event) {
108 Polymer.IronMenubarBehaviorImpl._onRightKey.apply(this, arguments); 107 Polymer.IronMenubarBehaviorImpl._onRightKey.apply(this, arguments);
109 this._activateFocusedItem(); 108 this._activateFocusedItem();
110 } 109 }
111 }); 110 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698