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 found a problem related to IE 11.
In IE 11, if element.classList.add() method does not receive arguments, the browser throws exception.
element.classList.add()
Similar behavior, when using the Function.prototype.apply() method
Function.prototype.apply()
In the postmate source code there is also an section that causes a similar problem
I think it can be fixed by adding an extra check for classListArgs length of array. I have a prepared Pull Request that will refer to this issue.
classListArgs
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hi!
I found a problem related to IE 11.
In IE 11, if
element.classList.add()
method does not receive arguments, the browser throws exception.Similar behavior, when using the
Function.prototype.apply()
methodIn the postmate source code there is also an section that causes a similar problem
I think it can be fixed by adding an extra check for
classListArgs
length of array.I have a prepared Pull Request that will refer to this issue.
The text was updated successfully, but these errors were encountered: