You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 4, 2019. It is now read-only.
Previously, if you wanted to re-render an HTMLBars template, the
template would create a brand new clone of the cached fragment and
create a new set of morphs.
This resulted in unnecessary work, since the static portions of the
rendered DOM already exist, and do not need to be re-cloned and
re-inserted into DOM.
This change begins the process of allowing an HTMLBars template to
update the output of a previous render, rather than starting from
scratch.
It introduces the concept of a (very WIP atm) “result” of a previous
render, which is passed back in to subsequent renders. At the moment,
the “result” is the fragment and morphs of the previous render. Soon,
it will become a more opaque data structure that includes the results
of sub-programs.
0 commit comments