|
|
|
|
|
by flexterra
4127 days ago
|
|
Ember's templates allows the framework to determine which portions of the DOM will never change, and so only needing to analyze the portions that might. <div class="container"> <-- this won't change
<h1>Hello World</h1> <-- this won't change
<div>{{name}} <-- this might change </div>
</div>
|
|
But I think now this may force us to use more handlebars. Manipulations in didInsertElement may get affected as well. Like updating classes which I sometimes prefer doing in hooks like click, didInsertElement.