angular/modules/angular2/test
cexbrayat b87da8f47c refactor(router): RouteData as a type
BREAKING CHANGE

The ROUTE_DATA token has been removed and replaced with a type RouteData,
allowing a type injection like we do with RouteParams.

Before:

    constructor(routeParams: RouteParams, @Inject(ROUTE_DATA) routeData) {
      let id = routeParams.get('id');
      let name = ROUTE_DATA.name;
    }

After:

    constructor(routeParams: RouteParams, routeData: RouteData) {
      let id = routeParams.get('id');
      let name = routeData.get('name');
    }

Fixes #4392

Closes #4428
2015-10-27 14:23:44 +00:00
..
animate refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
core fix(style_url_resolver): include asset: urls into precompiled stylesheets. 2015-10-26 17:19:33 -07:00
http chore(http): remove double "var http" in http spec 2015-10-22 10:08:35 +00:00
mock refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
pipes chore(saucelabs): add Edge 2015-10-15 18:20:41 +00:00
router refactor(router): RouteData as a type 2015-10-27 14:23:44 +00:00
symbol_inspector refactor(dart): Format Dart code 2015-10-20 17:39:37 +00:00
testing fix(testing): let DOM adapter dictate XHR implementation for tests 2015-10-15 12:12:27 -07:00
tools refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
web_workers refactor(dart): Format Dart code 2015-10-20 17:39:37 +00:00
platform.dart refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00
platform.ts refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00
public_api_spec.ts feat(core): PlatformRef and ApplicationRef support registration of disposal functions. 2015-10-26 21:35:18 +00:00