Results 5 issues of trung

In my scenario, I have an index route that displays item list, and a detail route to show detail info for each item. The content of the index route is...

[This fiddle](http://jsfiddle.net/oyz1c5fs/9/) is to reproduce the issue. When trying it, you will notice the async route's transition class is not removed properly. [This link](https://github.com/developit/preact-router/issues/187#issuecomment-334983107) references to this issue.

According to [angular's documentation](https://angular.io/docs/ts/latest/guide/lifecycle-hooks.html), ngAfterContentInit should be called before ngAfterViewInit. But at the latest version of meta-data (4.0.1), ngAfterContentInit is always called after ngAfterViewInit. That issue makes angular newbie like...

question

Is there any way get the form cleared?

When I render the element the first time by calling View.render(), it works as expected. But when I update the element's attributes by calling View.update(), only child elements are updated...