angular-cn/modules/@angular/compiler/test/template_parser
Matias Niemelä 9adf80385b fix(animations): remove deprecated trigger APIs (#10825)
BREAKING CHANGE: Animations defined using an at-symbol prefix that are
not property bound are now invalid.

```html
<!-- this is now invalid -->
<div @flip="flipState"></div>

<!-- change that to -->
<div [@flip]="flipState"></div>
```

BREAKING CHANGE: Animations that are not bound using the at-symbol
prefix using `animate-` must now be preixed using `bind-animate-`.

```html
<!-- this is now invalid -->
<div animate-flip="flipState"></div>

<!-- is valid now -->
<div bind-animate-flip="flipState"></div>
```

Closes #10825
2016-08-16 14:09:21 -07:00
..
template_parser_spec.ts fix(animations): remove deprecated trigger APIs (#10825) 2016-08-16 14:09:21 -07:00
template_preparser_spec.ts refactor(compiler): html_parser -> ml_parser 2016-08-05 13:39:54 -07:00