| OLD | NEW |
| 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 Loading... |
| 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 }); |
| OLD | NEW |