This works:
<div reorderable-repeat.for="item of items">
#${item.id} ${item.value}
</div>
But this crushes with node.getAttribute is not a function error:
<div reorderable-repeat.for="item of items" with.bind="item">
#${id} ${value}
</div>
Standard repeat works:
<div repeat.for="item of items" with.bind="item">
#${id} ${value}
</div>
This works:
But this crushes with
node.getAttribute is not a functionerror:Standard
repeatworks: