Created
August 9, 2014 15:04
-
-
Save y12studio/2aedd5362b6a201edf9d to your computer and use it in GitHub Desktop.
designer
This file contains 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="../components/polymer/polymer.html"> | |
<polymer-element name="hello-er" attributes="what"> | |
<template> | |
<style> | |
</style> | |
<div> | |
<strong>{{ what }}</strong> | |
</div> | |
</template> | |
<script> | |
Polymer('hello-er', { | |
attached: function () { | |
console.log('attached'); | |
} | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment