angular-cn/modules/change_detection
Misko Hevery 9db13be4c7 feat: change template micro-syntax to new syntax
Old syntax:
- ng-repeat: #item in items;
- ng-repeat: #item; in: items;
- <template let-ng-repeat=“item” [in]=items>

New syntax:
- ng-repeat: var item in items;
- ng-repeat: var item; in items
- <template ng-repeat var-item [in]=items>


Notice that the var is now a standalone binding 
rather then an argument to ng-repeat. This will 
make the var bindings consistent with the rest of 
the system.

Closes #482
2015-01-30 11:56:54 -08:00
..
docs docs: initial version of the documentation 2015-01-23 00:03:21 +00:00
src feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
test feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
pubspec.yaml fix(reflection): update pubspec.yaml to add a missing dependency on reflection 2014-11-24 18:03:26 -08:00