code such as
<button ng:click="test()" disabled="{{!enabled}}">Test</button>
does not work in IE, since it clobbers the value of this attribute. We should support
<button ng:click="test()" ng:disabled="{{!enabled}}">Test</button>
the current work around is:
<button ng:click="test()" ng:bind-attr="{disabled:'{{!enabled}}'};>Test</button>
--
You received this message because you are subscribed to the Google Groups "Angular" group.
To post to this group, send email to ang...@googlegroups.com.
To unsubscribe from this group, send email to angular+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/angular?hl=en.