Skip to content
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

[1.0] Tap gesture does not trigger when calling this.click in IE10 #1640

Closed
cdata opened this issue May 28, 2015 · 1 comment
Closed

[1.0] Tap gesture does not trigger when calling this.click in IE10 #1640

cdata opened this issue May 28, 2015 · 1 comment

Comments

@cdata
Copy link
Contributor

cdata commented May 28, 2015

Considering the following contrived element and usage:

var XTapable = Polymer({
  is: 'x-tapable`

  listeners: {
    tap: '_onTap'
  },

  _onTap: function() {
    console.log('Tapped');
  }
});

var tapable = new XTapable();

tapable.click();

"Tapped" is not logged to the console in IE10.

Here is a live JSBin example.

@cdata
Copy link
Contributor Author

cdata commented May 28, 2015

/cc @azakus

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant