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
Uncaught TypeError: Cannot read property '0' of undefined at o._touchStart (zoom.min.js:8) at HTMLDocument.i (jquery-1.9.1.min.js:3) at HTMLDocument.dispatch (jquery-1.9.1.min.js:3) at HTMLDocument.v.handle (jquery-1.9.1.min.js:3) o._touchStart @ zoom.min.js:8 i @ jquery-1.9.1.min.js:3 dispatch @ jquery-1.9.1.min.js:3 v.handle @ jquery-1.9.1.min.js:3
The text was updated successfully, but these errors were encountered:
Came across this issue too. Wrapping the function in () fixed it for me.
so instead of:
function ($) { "use strict";
....
} (jQuery);
make it:
(function ($) { "use strict";
}) (jQuery);
I'm no expert on this stuff but for whatever reason that fixed it for me.
Sorry, something went wrong.
✔️ Try my version of zoom.js!
Wrapping code in parens
e471c1c
fat#90 (comment) https://stackoverflow.com/questions/9053842/advanced-javascript-why-is-this-function-wrapped-in-parentheses
No branches or pull requests
The text was updated successfully, but these errors were encountered: