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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-radio-group/README.md

Issue 1834313003: Remove unneeded files from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restore bower.json files. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components-chromium/paper-radio-group/README.md
diff --git a/third_party/polymer/v1_0/components-chromium/paper-radio-group/README.md b/third_party/polymer/v1_0/components-chromium/paper-radio-group/README.md
deleted file mode 100644
index 1b571461afe7c778470f03c0ade8a61eddf211ca..0000000000000000000000000000000000000000
--- a/third_party/polymer/v1_0/components-chromium/paper-radio-group/README.md
+++ /dev/null
@@ -1,49 +0,0 @@
-
-<!---
-
-This README is automatically generated from the comments in these files:
-paper-radio-group.html
-
-Edit those files, and our readme bot will duplicate them over here!
-Edit this file, and the bot will squash your changes :)
-
--->
-
-[![Build Status](https://travis-ci.org/PolymerElements/paper-radio-group.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-radio-group)
-
-_[Demo and API Docs](https://elements.polymer-project.org/elements/paper-radio-group)_
-
-
-##&lt;paper-radio-group&gt;
-
-
-Material design: [Radio button](https://www.google.com/design/spec/components/selection-controls.html#selection-controls-radio-button)
-
-`paper-radio-group` allows user to select at most 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.
-
-The <paper-radio-buttons> inside the group must have the `name` attribute
-set.
-
-Example:
-
- <paper-radio-group selected="small">
- <paper-radio-button name="small">Small</paper-radio-button>
- <paper-radio-button name="medium">Medium</paper-radio-button>
- <paper-radio-button name="large">Large</paper-radio-button>
- </paper-radio-group>
-
-Radio-button-groups can be made optional, and allow zero buttons to be selected:
-
- <paper-radio-group selected="small" allow-empty-selection>
- <paper-radio-button name="small">Small</paper-radio-button>
- <paper-radio-button name="medium">Medium</paper-radio-button>
- <paper-radio-button name="large">Large</paper-radio-button>
- </paper-radio-group>
-
-See <a href="paper-radio-button">paper-radio-button</a> for more
-information about `paper-radio-button`.
-
-

Powered by Google App Engine
This is Rietveld 408576698