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

Unified Diff: pkg/polymer/lib/elements/polymer-ui-icon-button/metadata.html

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 years, 10 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: pkg/polymer/lib/elements/polymer-ui-icon-button/metadata.html
diff --git a/pkg/polymer/lib/elements/polymer-ui-icon-button/metadata.html b/pkg/polymer/lib/elements/polymer-ui-icon-button/metadata.html
new file mode 100644
index 0000000000000000000000000000000000000000..354036a417b30a5465b11c58e77d4191bc589582
--- /dev/null
+++ b/pkg/polymer/lib/elements/polymer-ui-icon-button/metadata.html
@@ -0,0 +1,64 @@
+<x-meta id="polymer-ui-icon-button" label="Polymer Icon Button">
+ <!--
+ /**
+ * @module Polymer UI Elements
+ */
+ /**
+ * polymer-ui-icon-button enables you to place an image centered in a button.
+ *
+ * Example:
+ *
+ * <polymer-ui-icon-button src="star.png"></polymer-ui-icon-button>
+ *
+ * Polymer includes an icon set. The property "icon" can be used
+ * to specify which icon to use.
+ *
+ * Example:
+ *
+ * <polymer-ui-icon-button icon="menu"></polymer-ui-icon-button>
+ *
+ * @class polymer-ui-icon-button
+ */
+ -->
+ <template>
+ <polymer-ui-icon-button icon="menu" theme="polymer-ui-light-theme"></polymer-ui-icon-button>
+ </template>
+ <!--
+ /**
+ * The URL of an image for the icon.
+ *
+ * @attribute src
+ * @type string
+ * @default ''
+ */
+ /**
+ * If true, border is placed around the button to indicate
+ * active state.
+ *
+ * @attribute active
+ * @type boolean
+ * @default false
+ */
+ /**
+ * Specifies the icon from the Polymer icon set.
+ *
+ * @attribute icon
+ * @type string
+ * @default ''
+ */
+ -->
+ <property name="index" hidden="true"></property>
+ <!--
+ /**
+ * If a theme is applied that includes an icon set, the index of the
+ * icon to display.
+ *
+ * @attribute index
+ * @type number
+ * @default -1
+ */
+ -->
+ <template id="imports">
+ <link rel="import" href="polymer-ui-icon-button.html">
+ </template>
+</x-meta>

Powered by Google App Engine
This is Rietveld 408576698