Skip to content

Instantly share code, notes, and snippets.

@y12studio
Created August 9, 2014 15:04
Show Gist options
  • Save y12studio/2aedd5362b6a201edf9d to your computer and use it in GitHub Desktop.
Save y12studio/2aedd5362b6a201edf9d to your computer and use it in GitHub Desktop.
designer
<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