-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
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
IE11 compatibility #39
Comments
What file and line number is that on? |
This works for me too. Thank you very much! |
Hi all,
I recently ran into an issue with IE11 compatibility. The issue was with this line:
jQuery(this.el.nativeElement)[0].innerHTML= '';
Updating this to this:
jQuery(this.el.nativeElement)[0].textContent = '';
Fixed the issue for me.
Just an FYI for anyone else having this issue (if anyone still has to support IE11 like me)
Feel free to tell me any reason this might be wrong also.
The text was updated successfully, but these errors were encountered: