Skip to content

Commit

Permalink
Merge pull request #2 from admwx7/am/polymer2
Browse files Browse the repository at this point in the history
Fix: missed the plural version
  • Loading branch information
jay8t6 authored Dec 1, 2017
2 parents a3d4a25 + 0c965b3 commit c7decf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
1 change: 1 addition & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<link rel="import" href="../../paper-button/paper-button.html">

<link rel="import" href="../iron-accordion.html">
<link rel="import" href="../iron-accordions.html">

<style>
iron-accordion img {
Expand Down
19 changes: 1 addition & 18 deletions iron-accordions.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-selector/iron-multi-selectable.html">
<link rel="import" href="iron-accordion.html">

<!--
[*Github Repo*](https://github.com/alijaya/iron-accordions)
Expand Down Expand Up @@ -50,7 +49,7 @@ <h2 header>Compound Header</h2>
}
</style>

<content></content>
<slot></slot>
</template>

<script>
Expand All @@ -72,22 +71,6 @@ <h2 header>Compound Header</h2>
// necessary), or kick off any processes the element wants to perform.
this.selectable = 'iron-accordion';
this.activateEvent = 'iron-accordion-header-tap';
},

attached: function() {
// `attached` fires once the element and its parents have been inserted
// into a document.
//
// This is a good place to perform any work related to your element's
// visual state or active behavior (measuring sizes, beginning animations,
// loading resources, etc).
},

detached: function() {
// The analog to `attached`, `detached` fires when the element has been
// removed from a document.
//
// Use this to clean up anything you did in `attached`.
}
});
</script>
Expand Down

0 comments on commit c7decf2

Please sign in to comment.