Last active
August 29, 2015 14:15
-
-
Save janbiasi/fee3e3be6a232c6fad74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="/racks/elements/racks.html"> | |
<racks-element name="my-tag"> | |
<style> | |
:host { | |
display: block; | |
} | |
</style> | |
<template> | |
<content></content> | |
</template> | |
<script> | |
Racks('my-tag', { | |
created: function(self) { | |
// After shadow-dom creation | |
}, | |
domReady: function() { | |
// Triggered at $(document).ready | |
} | |
}); | |
</script> | |
</racks-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment