use ng-src instead of src
CarstenLeue opened this issue · 0 comments
CarstenLeue commented
For dynamically generated image URLs I suggest to use ng-src to avoid an invalid lookup request, i.e. instead of
<img alt="{{card.title}}" src="{{card.thumbnail}}" />
write
<img alt="{{card.title}}" ng-src="{{card.thumbnail}}" />