I\'m displaying a list of thumbnails with this code:
As a note:
If using track by $index
doesn't update the DOM with the new values,
consider using a track by 'the properties you expect to change'
just be careful to avoid ngDupe
errors
e.g:
.
.
.
$scope.customExp = function(chan) {
return chan.id+chan.thumbnail_url; // this has to ensure uniqueness
}
or