| Index: third_party/polymer/v0_8/components-chromium/paper-radio-group/paper-radio-group.html
|
| diff --git a/third_party/polymer/v0_8/components-chromium/paper-radio-group/paper-radio-group.html b/third_party/polymer/v0_8/components-chromium/paper-radio-group/paper-radio-group.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ff665971377169d2a5de769d7cd7bddfeb279ccd
|
| --- /dev/null
|
| +++ b/third_party/polymer/v0_8/components-chromium/paper-radio-group/paper-radio-group.html
|
| @@ -0,0 +1,56 @@
|
| +<!--
|
| +@license
|
| +Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
|
| +This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
| +The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
| +The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
| +Code distributed by Google as part of the polymer project is also
|
| +subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
| +--><html><head><link rel="import" href="../polymer/polymer.html">
|
| +<link rel="import" href="../iron-selector/iron-selector.html">
|
| +<link rel="import" href="../paper-radio-button/paper-radio-button.html">
|
| +<link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
|
| +
|
| +<!--
|
| +`paper-radio-group` allows user to select only one radio button from a set.
|
| +Checking one radio button that belongs to a radio group unchecks any
|
| +previously checked radio button within the same group. Use
|
| +`selected` to get or set the selected radio button.
|
| +
|
| +Example:
|
| +
|
| + <paper-radio-group selected="small">
|
| + <paper-radio-button name="small" label="Small"></paper-radio-button>
|
| + <paper-radio-button name="medium" label="Medium"></paper-radio-button>
|
| + <paper-radio-button name="large" label="Large"></paper-radio-button>
|
| + </paper-radio-group>
|
| +
|
| +See <a href="paper-radio-button.html">paper-radio-button</a> for more
|
| +information about `paper-radio-button`.
|
| +
|
| +@group Paper Elements
|
| +@element paper-radio-group
|
| +@hero hero.svg
|
| +@demo demo/index.html
|
| +-->
|
| +
|
| +</head><body><dom-module name="paper-radio-group">
|
| + <style>
|
| + :host {
|
| + display: inline-block;
|
| + }
|
| +
|
| + iron-selector ::content > * {
|
| + padding: 12px;
|
| + }
|
| + </style>
|
| +
|
| + <template>
|
| + <iron-selector selected="{{selected}}" attr-for-selected="name" selectable="paper-radio-button">
|
| + <content id="items" select="*"></content>
|
| + </iron-selector>
|
| + </template>
|
| +
|
| +</dom-module>
|
| +
|
| +<script src="paper-radio-group-extracted.js"></script></body></html>
|
|
|