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

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

Issue 1766433002: Roll Polymer to 1.3.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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-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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698