| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html
"> | 10 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html
"> |
| 11 <link rel="import" href="../iron-selector/iron-selectable.html"> | 11 <link rel="import" href="../iron-menu-behavior/iron-menubar-behavior.html"> |
| 12 <link rel="import" href="../paper-radio-button/paper-radio-button.html"> | 12 <link rel="import" href="../paper-radio-button/paper-radio-button.html"> |
| 13 | 13 |
| 14 <!-- | 14 <!-- |
| 15 Material design: [Radio button](https://www.google.com/design/spec/components/se
lection-controls.html#selection-controls-radio-button) | 15 Material design: [Radio button](https://www.google.com/design/spec/components/se
lection-controls.html#selection-controls-radio-button) |
| 16 | 16 |
| 17 `paper-radio-group` allows user to select at most one radio button from a set. | 17 `paper-radio-group` allows user to select at most one radio button from a set. |
| 18 Checking one radio button that belongs to a radio group unchecks any | 18 Checking one radio button that belongs to a radio group unchecks any |
| 19 previously checked radio button within the same group. Use | 19 previously checked radio button within the same group. Use |
| 20 `selected` to get or set the selected radio button. | 20 `selected` to get or set the selected radio button. |
| 21 | 21 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 :host ::content > * { | 62 :host ::content > * { |
| 63 padding: var(--paper-radio-group-item-padding, 12px); | 63 padding: var(--paper-radio-group-item-padding, 12px); |
| 64 } | 64 } |
| 65 </style> | 65 </style> |
| 66 | 66 |
| 67 <content id="items" select="*"></content> | 67 <content id="items" select="*"></content> |
| 68 </template> | 68 </template> |
| 69 </dom-module> | 69 </dom-module> |
| 70 | 70 |
| 71 <script src="paper-radio-group-extracted.js"></script></body></html> | 71 <script src="paper-radio-group-extracted.js"></script></body></html> |
| OLD | NEW |