Skip to content

Instantly share code, notes, and snippets.

@IntranetFactory
Created June 5, 2014 22:35
Show Gist options
  • Select an option

  • Save IntranetFactory/399d2eb459c244a41766 to your computer and use it in GitHub Desktop.

Select an option

Save IntranetFactory/399d2eb459c244a41766 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
</style>
<button id="button" on-tap="onTap" on-click="onClick">Tap me!</button>
</template>
<script>
Polymer('my-element', {
onTap: function () {
alert('on-tap fired')
},
onClick: function () {
alert('on-click fired')
}
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment