Skip to content

Instantly share code, notes, and snippets.

@teeaich
Created July 8, 2014 09:34
Show Gist options
  • Save teeaich/4446555c719eee6655d3 to your computer and use it in GitHub Desktop.
Save teeaich/4446555c719eee6655d3 to your computer and use it in GitHub Desktop.
designer
<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