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
Hi, I have this issue only on some old version of iPad. The issue is on line 458:
cnName = constr.toString().match(self.rx_function)[1];
I don't know if it's the best solution, but I solved in that way:
cnName = constr.toString().match(self.rx_function) ? [1] : null;
The text was updated successfully, but these errors were encountered:
Is there any way to reproduce this without the old iPad?
Sorry, something went wrong.
No, I just noticed this issue on old iPad (iPad 3), on chrome simulator or other iOS devices is fine.
No branches or pull requests
Hi, I have this issue only on some old version of iPad. The issue is on line 458:
cnName = constr.toString().match(self.rx_function)[1];
I don't know if it's the best solution, but I solved in that way:
cnName = constr.toString().match(self.rx_function) ? [1] : null;
The text was updated successfully, but these errors were encountered: