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
I had a 3rd party library throw an error, which I could traceroute back to the event listener hooks of zone.js in meteorhacks:zones.
zone.js
meteorhacks:zones
This line is failing: https://github.com/meteorhacks/zones/blob/master/assets/zone.js#L947
The reason is that arguments[1] is null, which is not checked. So I get the error message that property _bound cannot be found in undefined.
arguments[1]
_bound
Here's a screenshot of the failure situation:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had a 3rd party library throw an error, which I could traceroute back to the event listener hooks of
zone.js
inmeteorhacks:zones
.This line is failing:
https://github.com/meteorhacks/zones/blob/master/assets/zone.js#L947
The reason is that
arguments[1]
is null, which is not checked. So I get the error message that property_bound
cannot be found in undefined.Here's a screenshot of the failure situation:
The text was updated successfully, but these errors were encountered: