angular-cn/modules
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
..
angular feat(package): introduce a catch-all package angular. 2015-01-23 10:31:24 -08:00
benchmarks feat(change_detection): implement a change detector generator 2015-01-27 16:18:15 -08:00
benchmarks_external feat(perf): add AngularDart v1 of table scrolling benchmark 2015-01-27 09:53:22 -08:00
change_detection feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
core feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
di fix(bootstrap): change bootstrap not to create a separate injector for the provided bindings 2015-01-08 19:53:18 -08:00
directives feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
e2e_test_lib feat(perf): add AngularDart v1 of table scrolling benchmark 2015-01-27 09:53:22 -08:00
examples feat(change_detection): implement a change detector generator 2015-01-27 16:18:15 -08:00
facade feat(change_detection): change proto change detectors to coalesce records 2015-01-27 16:42:55 -08:00
reflection style: fix typos 2014-12-04 11:01:19 +01:00
rtts_assert feat(test_lib): implement SpyObject 2014-12-29 13:27:17 -08:00
test_lib fix(test_lib): support comparing Maps in nested structures 2015-01-28 09:35:35 -08:00