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
updateElement: function() { this.$element.val(this.getTime()).change(); },
Before firing change event, please verify that new value is not the same. Something like that:
updateElement: function() { if(this.$element.val() !== this.getTime()){ this.$element.val(this.getTime()).change(); } },
The text was updated successfully, but these errors were encountered:
I have this problem too. It's really annoying and not intuitive at all.
Sorry, something went wrong.
Did you solve this problem? If yes, what's the solution
While this is still an issue, the solution would be, of course, to do that check yourself.
Thanks for the report @pyanoveugen and @gnapse. It's good to know it's annoying.
No branches or pull requests
Before firing change event, please verify that new value is not the same.
Something like that:
The text was updated successfully, but these errors were encountered: