Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 9c0ff88

Browse files
committed
docs(guide): add note about value attribute
- Add note about value attribute for the progress tag with IE
1 parent f467dc3 commit 9c0ff88

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/content/guide/ie.ngdoc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ To ensure your Angular application works on IE please consider:
2929

3030
1. Use `ng-style` tags instead of `style="{{ someCss }}"`. The latter works in Chrome and Firefox
3131
but does not work in Internet Explorer <= 11 (the most recent version at time of writing).
32-
2. For the `type` attribute of buttons, use `ng-attr-type` tags instead of
33-
`type="{{ someExpression }}"`. If using the latter, Internet Explorer overwrites the expression
32+
2. For the `type` attribute of buttons, use `ng-attr-type` tags instead of
33+
`type="{{ someExpression }}"`. If using the latter, Internet Explorer overwrites the expression
3434
with `type="submit"` before Angular has a chance to interpolate it.
35+
3. For the `value` attribute of progress, use `ng-attr-value` tags instead of
36+
`value="{{ someExpression}}"`. If using the latter, Internet Explorer overwrites the expression
37+
with `value="0"` before Angular has a chance to interpolate it.

0 commit comments

Comments
 (0)