I unfortunately need to support IE7 and followed the guidlines set out in the documentation.
I have an issue when setting attributes from the model like so :
<div class="{{someScopeObjectClass}}" >
This sets the class correctly in IE8, Chrome but not in IE7.
Similarly, this works in those browsers
<input type="button" data-ng-click="someScopeMethod(foo)"
value="{{someScopeObject.ButtonText}}"/>
but in IE7, the data-ng-click works fine but the value attribute is not being set correctly.
I have tried the following, but have not had any luck so far:
<div data-ng-class="{{auditContainerClass}}" >
and
<div data-ng-attr-class="{{auditContainerClass}}" >
Is there a workaround for this?