-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
binding within style attribute breaks in IE #17075
Comments
Sorry, is this Polymer or Angular? Added NeedsInfo label. |
This comment was originally written by andriy....@gmail.com Pure Polymer, thanks for looking. |
Added Area-Polymer, Triaged labels. |
Removed Area-Polymer label. |
Added this to the 1.6 milestone. |
Removed this from the 1.6 milestone. |
Removed Polymer-P-1 label. |
Added PolymerMilestone-Next label. |
Removed Polymer-Milestone-Next label. |
This comment was originally written by Roman.Korneyev@gmail.com Still <div style="{{css}}"> doesn't work in IE only.. |
This comment was originally written by Roman.Korneyev@gmail.com are there plans to include the fix of this issue in polymer 0.12.0? |
Just to have more information, what version of IE are you using? We plan to release 0.12.0 fairly soon, so I don't believe this will be fixed by the time we release it. But we can easily push another version after we find what the problem is and a way to fix this. |
This comment was originally written by @zoechi There are SO questions about this |
This comment was originally written by Roman.Korneyev@gmail.com The simple code <div style="{{css}}"> doesn't work in both IE 10 and IE11 |
Thanks gzoechi@! Indeed, seems this is a quite relevant link from that github issue: We seem to have tests in template_binding for this as well, so that might be all you need to do to make this work in IE, change: <div style="{{css}}"> to <div _style="{{css}}"> Let us know if that fixes the issue. Cheers! Added Waiting label. |
Assuming this is stale, the _style fix should work Added AssumedStale label. |
This comment was originally written by matty...@gmail.com _style worked for me. Thanks! |
This issue has been moved to dart-archive/polymer-dart#121. |
This issue was originally filed by andriy....@gmail.com
<div style="width:{{width}};height:{{height}}"> Will work in firefox and chrome, but not in IE.
The text was updated successfully, but these errors were encountered: