Skip to content

Instantly share code, notes, and snippets.

@itfourp
itfourp / app.html
Last active May 10, 2018 09:26 — forked from jdanyow/app.html
Repeater/ViewFactory cache usage issue
<template>
<require from="demo-container"></require>
<h2>Current behaviour</h2>
<h4>Sometimes when swapping elements the template used is not the right one for the repeat</h4>
<button click.delegate="swapElements(bogusAppItems, bogusOtherAppItems)">Swap elements</button>
<demo-container container-items.bind="bogusAppItems">
<template replace-part="item-replaceable">
<span>${containerItem.description}</span>
</template>