Created
July 8, 2014 09:34
-
-
Save teeaich/4446555c719eee6655d3 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="polymer-cool"> | |
<template> | |
<style> | |
</style> | |
<content></content> | |
</template> | |
<script> | |
Polymer('polymer-cool', { | |
praise: 'cool', | |
makeCoolest: function () { | |
this.praise = 'the coolest'; | |
} | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment