angular/modules/angular2/docs
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
..
change_detection docs(change_detection): add explicit @name and @description 2015-02-17 08:08:47 +00:00
cheatsheet docs(core): replace angular2/angular2 with the right barrel import. 2015-12-11 15:30:25 -08:00
core feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
di feat(di): rename Binding into Provider 2015-10-11 05:13:31 +00:00
migration docs: fix variable name, change to camelCase 2015-12-10 14:35:28 -08:00
web_workers refactor(WebWorker): Make WebWorker bootstrap synchronous 2015-12-14 21:04:46 +00:00