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

Commit ee8055c

Browse files
author
Zeno Rocha
committedApr 26, 2014
Release v0.1.3
1 parent 2664378 commit ee8055c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎dist/my-element.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!-- Import Polymer -->
2+
<link rel="import" href="../../polymer/polymer.html">
3+
4+
<!-- Define your custom element -->
5+
<polymer-element name="my-element">
6+
7+
<script>
8+
Polymer('my-element', {
9+
// Fires when an instance of the element is created
10+
created: function() {},
11+
12+
// Fires when the "<polymer-element>" has been fully prepared
13+
ready: function() {},
14+
15+
// Fires when the element was inserted into the document
16+
attached: function() {},
17+
18+
// Fires when the element was removed from the document
19+
detached: function() {},
20+
21+
// Fires when an attribute was added, removed, or updated
22+
attributeChanged: function(attr, oldVal, newVal) {}
23+
});
24+
</script>
25+
26+
</polymer-element>

0 commit comments

Comments
 (0)
This repository has been archived.