OLD | NEW |
1 Polymer({ | 1 Polymer({ |
2 is: 'paper-radio-button', | 2 is: 'paper-radio-button', |
3 | 3 |
4 behaviors: [ | 4 behaviors: [ |
5 Polymer.PaperCheckedElementBehavior | 5 Polymer.PaperCheckedElementBehavior |
6 ], | 6 ], |
7 | 7 |
8 hostAttributes: { | 8 hostAttributes: { |
9 role: 'radio', | 9 role: 'radio', |
10 'aria-checked': false, | 10 'aria-checked': false, |
(...skipping 12 matching lines...) Expand all Loading... |
23 * | 23 * |
24 * @event iron-change | 24 * @event iron-change |
25 */ | 25 */ |
26 | 26 |
27 ariaActiveAttribute: { | 27 ariaActiveAttribute: { |
28 type: String, | 28 type: String, |
29 value: 'aria-checked' | 29 value: 'aria-checked' |
30 } | 30 } |
31 }, | 31 }, |
32 | 32 |
33 // create the element ripple inside the `radioContainer` | 33 ready: function() { |
34 _createRipple: function() { | |
35 this._rippleContainer = this.$.radioContainer; | 34 this._rippleContainer = this.$.radioContainer; |
36 return Polymer.PaperInkyFocusBehaviorImpl._createRipple.call(this); | |
37 } | 35 } |
38 }); | 36 }); |
OLD | NEW |