First, let me say, yes I have included the shims in my index.html.
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js">
</script>
I'm using Angular2 beta-17.
The string properties below are all resolved fine except for the image style in IE.
In IE, the name and address properties show fine, but the style is completely removed from the img tag. This works fine in all other browsers
Name: {{recipient.name}} <br/>
Address: {{recipient.address}} <br/>
<img style="background: url(/pImages/{{recipient._id}}.jpg);" />
IE seems to have a problem with the brackets in the style value because the following hard-coded value works fine in IE
<img style="background: url(/pImages/230721.jpg);" />
Every search I've done claims to resolve all of IE's issues by putting in the shims, but I've done that.
TIA