Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
update icon doc comments, metadata edits
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott J. Miles committed Sep 3, 2013
1 parent 7acce86 commit 78a7b95
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 3 deletions.
3 changes: 2 additions & 1 deletion metadata.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@
</x-meta>

<x-meta id="polymer-ui-menu-button" label="Polymer Menu Button" isContainer>

<x-meta id="polymer-ui-menu-item" label="Polymer Menu Item"></x-meta>
<x-meta id="polymer-ui-submenu-item" label="Polymer Submenu"></x-meta>

<x-meta id="polymer-ui-nav-arrow" label="Polymer Nav Arrow"></x-meta>

<x-meta id="polymer-ui-ratings" label="Polymer Ratings">
Expand Down
61 changes: 61 additions & 0 deletions polymer-ui-icon-button/metadata.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<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
*/
-->
</x-meta>
4 changes: 2 additions & 2 deletions polymer-ui-icon/polymer-ui-icon.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
-->
<!--
/**
* Polymer-UI Elements
* Polymer UI Elements
*
* @module Polymer-UI Elements
* @module Polymer UI Elements
*/
/**
* polymer-ui-icon is a 24x24 glyph expressed as a background-image.
Expand Down

0 comments on commit 78a7b95

Please sign in to comment.