angular-docs-cn/modules/change_detection/test
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
..
parser feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
array_changes_spec.js refactor(change_detection): add change_detection library file 2014-12-29 15:20:42 -08:00
change_detection_spec.js perf(change_detection): use object pools not to create unnecessary garbage 2015-01-28 20:08:58 -08:00
coalesce_spec.js feat(change_detection): change proto change detectors to coalesce records 2015-01-27 16:42:55 -08:00
iterable.dart feat(Change Detector): Add support for collection content watch 2014-12-03 10:37:13 +01:00
iterable.es6 feat(Change Detector): Add support for collection content watch 2014-12-03 10:37:13 +01:00
keyvalue_changes_spec.js feat(Change Detector): Add support for collection content watch 2014-12-03 10:37:13 +01:00
util.js feat(Change Detector): Add support for collection content watch 2014-12-03 10:37:13 +01:00