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
Maybe I am getting something wrong, but this
if (!e.originalEvent.clickin || e.originalEvent.clickin !== id) {
will always evaluate to true, even if clickin has the same counter value. Since it is stored as an attribute it is a string.
This seems to work the way I understand it should:
if (!e.originalEvent.clickin || parseInt(e.originalEvent.clickin) !== id) {
The text was updated successfully, but these errors were encountered:
Has this been addressed?
Sorry, something went wrong.
I'm having the same issue. Fixed it with parseInt.
No branches or pull requests
Maybe I am getting something wrong, but this
will always evaluate to true, even if clickin has the same counter value. Since it is stored as an attribute it is a string.
This seems to work the way I understand it should:
The text was updated successfully, but these errors were encountered: