mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Previously the compiler would ignore everything in the attribute name after the first dot. For example <div [attr.someAttr.attrSuffix]="var"></div> is turned into <div someAttr="varValue"></div>. This commit ensures that whole attribute name is captured. Now <div [attr.someAttr.attrSuffix]="var"></div> is turned into <div someAttr.attrSuffix="varValue"></div> PR Close #32256 |
||
|---|---|---|
| .. | ||
| util | ||
| binding_parser_spec.ts | ||
| template_parser_absolute_span_spec.ts | ||
| template_parser_spec.ts | ||
| template_preparser_spec.ts | ||