This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |