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
Sometimes I get the following error:
But the component still works. I looked into the source and found the following:
Windy.prototype.stop = function () { this.particules.splice(0, this.particules.length); this.animationBucket.clear(); if (this.animationLoop) { clearTimeout(this.animationLoop); this.animationLoop = null; } };
I am not sure why this is happening but isn't it safe to check for null and then apply clear() method?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes I get the following error:
But the component still works. I looked into the source and found the following:
I am not sure why this is happening but isn't it safe to check for null and then apply clear() method?
The text was updated successfully, but these errors were encountered: