doc(template syntax): Short-circuiting is now supported

see https://github.com/angular/angular/pull/5146
This commit is contained in:
Victor Berchet 2015-11-05 13:17:48 -08:00 committed by Ward Bell
parent 7676a5c101
commit 5828f4de79
1 changed files with 0 additions and 2 deletions

View File

@ -99,8 +99,6 @@ code-example(format="" language="html" escape="html").
* Assignment is prohibited except in [Event Bindings](#event-binding).
* The `new` operator is prohibited.
* The bit-wise operators, `|` and `&`, are not supported.
* The logical operators, `||` and `&&`, and the ternary operator in `a?b:c` do not “short-circuit”.
Angular evaluates both sides of `a && a.foo` and reports an error if `a` is null.
* Increment and decrement operators, `++` and `--`, arent supported.
* [Template expression operators](#expression-operators), such as `|` and `?.`, add new meaning.