angular/modules/core
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: follow/side effects/taught typos 2015-01-27 00:13:23 -08: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 feat(zone): add support for long stack traces 2014-12-17 14:56:54 -08:00