Skip to content

running add,set,remove,move in the Observation update queue

Compare
Choose a tag to compare
@phillipskevin phillipskevin released this 05 Sep 19:52
· 245 commits to master since this release

#56

This fixes an issue where parent.replacements was null at times in the register function in cases where an {{#if ...}} surrounded an {{#each ...}} and the list was modified in the same batch as the if was toggled to remove the each:

{{#if show}}
  {{#each items as item}}
    {{item}}
  {{/each}}
{{/if}}
show = false;
list.replace([ 'two', 'three' ]);