I\'m displaying a list of thumbnails with this code:
You can use track by
in your ng-repeat
with a unique identifier. If I suppose your channel object has an id, you can do :
The tracking avoids the complete DOM deletion and recreation at every updates, as Angular will be able to track if the element is the same as previously and will keep the DOM element.