Skip to content

Use the DOM queue for all DOM updates

Compare
Choose a tag to compare
@bmomberger-bitovi bmomberger-bitovi released this 27 Dec 20:02
· 17 commits to master since this release

Previously, some DOM updates happened on the notify queue, others on the dom queue, yet others (list removal) immediately. This caused bugs and made live updates harder to reason about.

With this PR, all updates in can-view-live are queued on the dom queue and therefore updated in DOM order, whether they are html, text, list, or attribute updates.

See #155 for more.