angular/modules/angular2/test/router
vsavkin 5b5d31fa9a feat(pipe): added the Pipe decorator and the pipe property to View
BREAKING CHANGE:
    Instead of configuring pipes via a Pipes object, now you can configure them by providing the pipes property to the View decorator.

    @Pipe({
      name: 'double'
    })
    class DoublePipe {
      transform(value, args) { return value * 2; }
    }

    @View({
      template: '{{ 10 | double}}'
      pipes: [DoublePipe]
    })
    class CustomComponent {}

Closes #3572
2015-08-12 00:38:40 +00:00
..
location_spec.ts fix(router): ensure navigation via back button works 2015-08-03 22:24:57 +00:00
outlet_spec.ts feat(router): auxiliary routes 2015-08-10 10:47:37 -07:00
path_recognizer_spec.ts feat(router): auxiliary routes 2015-08-10 10:47:37 -07:00
route_config_spec.dart style(dart): Run dartfmt v0.1.8+2 on all pure Dart code 2015-07-28 12:44:03 -07:00
route_config_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
route_recognizer_spec.ts feat(router): auxiliary routes 2015-08-10 10:47:37 -07:00
route_registry_spec.ts fix(router): throw when component in route config is not defined 2015-08-11 21:21:32 +00:00
router_integration_spec.ts fix(router): ensure navigation via back button works 2015-08-03 22:24:57 +00:00
router_link_spec.ts feat(router): auxiliary routes 2015-08-10 10:47:37 -07:00
router_spec.ts feat(router): auxiliary routes 2015-08-10 10:47:37 -07:00
url_parser_spec.ts feat(router): auxiliary routes 2015-08-10 10:47:37 -07:00