We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example: http://plnkr.co/edit/pIcvOOwpwsITthrnlM8R?p=preview
Steps:
If you have something inside an iron-selectable child which listens on tap event, it is incapable of setting the selected item.
iron-selectable
This seems to be because iron-selectable catches any tap events and sets the selected item to the child which the event came from.
If you put the increment in the example inside this.async(...), it will work because the iron-selectable handler runs first.
this.async(...)
The text was updated successfully, but these errors were encountered:
As a temporary workaround, you can call stopPropagation on the tap event.
stopPropagation
Sorry, something went wrong.
No branches or pull requests
Example:
http://plnkr.co/edit/pIcvOOwpwsITthrnlM8R?p=preview
Steps:
If you have something inside an
iron-selectable
child which listens on tap event, it is incapable of setting the selected item.This seems to be because
iron-selectable
catches any tap events and sets the selected item to the child which the event came from.If you put the increment in the example inside
this.async(...)
, it will work because theiron-selectable
handler runs first.The text was updated successfully, but these errors were encountered: