-
Notifications
You must be signed in to change notification settings - Fork 30
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
"Unspecified error" in Internet Explorer 11 #72
Comments
This was due to databinding to a null value, not sure if that should work? |
This is still an issue. @srijken Thanks for noting what caused the issue for you. It helped me work around the issue when I encountered it. With this markup: This code will cause this error on IE 11 Polymer({
is: "foo-bar",
properties: {
someObject: {
type: Object,
value: {}
}
}
// ...
}) But this will not Polymer({
is: "foo-bar",
properties: {
someObject: {
type: Object,
value: {
someProperty: ""
}
}
}
// ...
}) |
I think I have the same issue on an element I built and so far my issue is related on setting iron-input Update: In this element there is this code: // Advance or back up the caret based on the change that happened before it.
this.$.input.selectionStart = this.$.input.selectionEnd = start + dashesDifference; I belive here is where IE11 throws this generic error. |
When opening an app that contains this element, IE11 throws an error
Expected outcome
No error :)
Actual outcome
Live Demo
https://tts-dev.competence.biz/
Steps to reproduce
Put this on the page:
Build with
polymer build
Deploy unbundled files
Visit with IE11
Browsers Affected
The text was updated successfully, but these errors were encountered: