From 0fad9c2786792cab37a3001ebeb1ecb9bcb7e481 Mon Sep 17 00:00:00 2001 From: Jerome Velociter Date: Fri, 20 May 2016 19:06:46 +0200 Subject: [PATCH] docs(changelog): fix ViewQuery read usage example in beta.16 (#8330) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee05ad95d3..fe3b7604b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -288,7 +288,7 @@ as a served file in your Karma or other test configuration. should be used, create one before calling this method. (e.g. via `ReflectiveInjector.resolveAndCreate(…)`. -* - `DynamicComponentLoader.loadIntoLocation` has been removed. Use `@ViewChild(‘myVar’, read: ViewContainerRef)` to get hold of a `ViewContainerRef` at an element with variable `myVar`. Then call `DynamicComponentLoader.loadNextToLocation`. +* - `DynamicComponentLoader.loadIntoLocation` has been removed. Use `@ViewChild(‘myVar’, {read: ViewContainerRef})` to get hold of a `ViewContainerRef` at an element with variable `myVar`. Then call `DynamicComponentLoader.loadNextToLocation`. - `DynamicComponentLoader.loadNextToLocation` now takes a `ViewContainerRef` instead of an `ElementRef`. - `AppViewManager` is renamed into `ViewUtils` and is a mere private utility service.