I am trying to migrate from this:
<a class="item item-thumbnail-left"
ng-repeat="item in items" >
<img class="icon" >
<h2>{{item.name}}</h2>
<p style="font-style:italic;" class="item-titulo">{{item.date | date: 'medium'}}</p>
</a>
to this:
<a class="item item-thumbnail-left"
collection-repeat="item in items"
collection-item-height="'20%'"
collection-item-width="'100%'">
<img class="icon" />
<h2>{{item.name}}</h2>
<p style="font-style:italic;" class="item-titulo" >{{item.date | date: 'medium'}}</p>
</a>
But it doesnt work, it doesnt display the list, despite the code appears in the chrome console.
A lot of thanks in advance.
Hope you can help me.