Collection-repeat items disappearing on scroll

Continuing the discussion from Items disappearing with collection-repeat on iOS device:
I’m having the same problem with items disappearing on scroll with collection-repeat. It even happens in my browser and I can’'t figure out why. Below if my markup:

 <ion-list>
 <ion-item collection-repeat="customer in customers" collection-item-height="'25'" collection-item-width="'100%'">

        <ion-delete-button 
        class="ion-minus-circled" 
        data-ng-click="deleteCustomer(customers[$index])">
        </ion-delete-button>        

        {{customer.name}}

        <ion-reorder-button 
        class="ion-navicon" 
        on-reorder="reorderCustomer(customers[$index], $fromIndex, $toIndex)">
        </ion-reorder-button>
      </ion-item>       

In my controller…

  $scope.customers= [];
  for (var i = 0; i < 1000; i++) {
      $scope.customers.push({'name' : 'Customer'+ i });
  };

Anyone know what i’m doing wrong?

False alarm, it was due to the fact that I had position:initial styling on it. Needs to be absolute