Skip to content

Instantly share code, notes, and snippets.

@tpmccallum
Created November 20, 2014 06:18
Show Gist options
  • Save tpmccallum/dc28e29a1f9ba2766d6a to your computer and use it in GitHub Desktop.
Save tpmccallum/dc28e29a1f9ba2766d6a to your computer and use it in GitHub Desktop.
<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"></script>
<script>
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