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
After your latest update the call to
$(element).find(args).matchHeight();
fails with "TypeError: Cannot read property 'target' of undefined "
The workaround was to call with an empty object like this:
$(element).find(args).matchHeight({});
Bug is in your check for target (line 114)
if (this.length <= 1 && !options.target) { return this; }
Also anyway you can tag your releases so we do not blindly use master (I need the min-height feature)?
As always thanks you for your work and for sharing this.
The text was updated successfully, but these errors were encountered:
290dfcf
Apologies. That should sort it. I'll get a new release arranged!
Sorry, something went wrong.
No branches or pull requests
After your latest update the call to
fails with "TypeError: Cannot read property 'target' of undefined "
The workaround was to call with an empty object like this:
Bug is in your check for target (line 114)
Also anyway you can tag your releases so we do not blindly use master (I need the min-height feature)?
As always thanks you for your work and for sharing this.
The text was updated successfully, but these errors were encountered: