Created
November 20, 2014 06:18
-
-
Save tpmccallum/dc28e29a1f9ba2766d6a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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