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

Unified Diff: bower_components/paper-radio-group/paper-radio-group.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bower_components/paper-radio-group/metadata.html ('k') | bower_components/paper-ripple/.bower.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bower_components/paper-radio-group/paper-radio-group.html
diff --git a/bower_components/paper-radio-group/paper-radio-group.html b/bower_components/paper-radio-group/paper-radio-group.html
deleted file mode 100644
index ab9affc77f93535d0c3cfb27f980ed3992277e3d..0000000000000000000000000000000000000000
--- a/bower_components/paper-radio-group/paper-radio-group.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!--
-Copyright (c) 2014 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
--->
-
-<!--
-`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/">paper-radio-button</a> for more
-information about `paper-radio-button`.
-
-@group Paper Elements
-@element paper-radio-group
-@extends core-selector
-@homepage github.io
--->
-
-<link rel="import" href="../core-selector/core-selector.html">
-<link rel="import" href="../paper-radio-button/paper-radio-button.html">
-
-<polymer-element name="paper-radio-group" extends="core-selector" role="radiogroup">
-
- <template>
-
- <style>
-
- :host {
- display: inline-block;
- }
-
- polyfill-next-selector { content: ':host > *'; }
- ::content > * {
- padding: 12px;
- }
-
- </style>
-
- <shadow></shadow>
-
- </template>
-
- <script>
-
- Polymer('paper-radio-group', {
-
- selectedAttribute: 'checked',
- activateEvent: 'change'
-
- });
-
- </script>
-
-</polymer-element>
« no previous file with comments | « bower_components/paper-radio-group/metadata.html ('k') | bower_components/paper-ripple/.bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698