angular/modules/angular2/src/web_workers
Jason Teplitz 006a96dd20 refactor(WebWorker): Make WebWorker bootstrap synchronous
BREAKING CHANGE

From the app thread, in both TypeScript and Dart, you bootstrap the app
using `application` instead of `asyncApplication`.
Before:
```TypeScript
platform([WORKER_APP_PLATFORM])
.asyncApplication(setupWebWorker, optionalProviders?)
.then((ref) => ref.bootstrap(RootComponent));
```
Now:
```TypeScript
platform([WORKER_APP_PLATFORM])
.application([WORKER_APP_APPLICATION])
.bootstrap(RootComponent);
```

closes #5857

Closes #5862
2015-12-14 21:04:46 +00:00
..
debug_tools refactor(WebWorker): Make WebWorker bootstrap synchronous 2015-12-14 21:04:46 +00:00
shared refactor(WebWorker): Make WebWorker bootstrap synchronous 2015-12-14 21:04:46 +00:00
ui fix(web_workers): remove unnecessary setup module and AppRootUrl 2015-12-12 00:58:56 +00:00
worker feat(dom_renderer): add setBindingDebugInfo method 2015-12-10 19:18:14 +00:00