I am using a collection-repeater to create a list of clickable items. When I attempt to click on any item in the list it selects a different object instead of the item I want. This does not happen in version 1.0.0.10 but in any version above that (1.0.0.11 - 1.0.0.13).
<a class="item item-thumbnail-left item-collection-repeat"
collection-repeat="user in phonelist.getUsers()"
collection-item-width="'100%'"
collection-item-height="100"
ui-sref="phonelist.contact({ company: user.DefaultCompany.CompanyName, empNo: user.DefaultCompany.EmpNo})">
<img ng-src="{{user.ImageUrl}}" />
<h2>{{user.FullName}}</h2>
<p>{{user.DefaultCompany.CompanyName}}</p>
</a>
Is there anything I am missing or not doing correct?