-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on-tap doesn't fire all the time that on-click does #255
Comments
<script src="../third_party/polymer/polymer.js"></script>
<link rel="import" href="../third_party/polymer-all/polymer-ui-elements/polymer-ui-collapsible/polymer-ui-collapsible.html">
<polymer-element name="test-view">
<template>
<input style="width: 300px" value="click here, press tab, then press spacebar">
<button on-tap="onTap" on-click="onClick">Tap me!</button>
</template>
<script>
Polymer('test-view', {
onTap: function() {
alert('on-tap fired')
},
onClick: function() {
alert('on-click fired')
},
});
</script>
</polymer-element>
<test-view></test-view> |
ghost
assigned dfreedm
Aug 23, 2013
Yes, this was one of the areas I deprioritized for the |
This specific case should be handled in googlearchive/PointerGestures@e237b9f |
Thanks! |
Closing as it appears to be solved. Please re-open if that's not the case |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
html```
<script src="../third_party/polymer/polymer.js"></script> Tap me! <script> Polymer('test-view', { onTap: function() { alert('on-tap fired') }, onClick: function() { alert('on-click fired') }, }); </script>The text was updated successfully, but these errors were encountered: