Skip to content

Instantly share code, notes, and snippets.

@tpmccallum
Created November 20, 2014 06:13
Show Gist options
  • Save tpmccallum/87d20f055a25baabd654 to your computer and use it in GitHub Desktop.
Save tpmccallum/87d20f055a25baabd654 to your computer and use it in GitHub Desktop.
javascript
<polymer-element name="my-element-wikipedia">
<template>
<style>h2 { color: black; } </style>
<button on-click="{{buttonClick}}"><h2>Hello from my prototyped element!</h2></button>
</template>
<script src="wikipedia.js">
Polymer('my-element-wikipedia', {
buttonClick: function() {
alert('howdy folks!');
}
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment