Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Move behavior description from HTML comment to JSDoc. Fixes #117 #118

Open
wants to merge 1 commit into
base: 1.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions paper-item-behavior.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
<link rel="import" href="../iron-behaviors/iron-button-state.html">
<link rel="import" href="../iron-behaviors/iron-control-state.html">

<!--
`PaperItemBehavior` is a convenience behavior shared by <paper-item> and
<paper-icon-item> that manages the shared control states and attributes of
the items.
-->

<script>
/** @polymerBehavior Polymer.PaperItemBehavior */
/**
* `PaperItemBehavior` is a convenience behavior shared by <paper-item> and
* <paper-icon-item> that manages the shared control states and attributes
* of the items.
*
* @polymerBehavior Polymer.PaperItemBehavior
*/
Polymer.PaperItemBehaviorImpl = {
hostAttributes: {
role: 'option',
Expand Down