Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
Release v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeno Rocha committed Apr 26, 2014
1 parent 2664378 commit ee8055c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions dist/my-element.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!-- Import Polymer -->
<link rel="import" href="../../polymer/polymer.html">

<!-- Define your custom element -->
<polymer-element name="my-element">

<script>
Polymer('my-element', {
// Fires when an instance of the element is created
created: function() {},

// Fires when the "<polymer-element>" has been fully prepared
ready: function() {},

// Fires when the element was inserted into the document
attached: function() {},

// Fires when the element was removed from the document
detached: function() {},

// Fires when an attribute was added, removed, or updated
attributeChanged: function(attr, oldVal, newVal) {}
});
</script>

</polymer-element>

0 comments on commit ee8055c

Please sign in to comment.