acoustic-content-samples/sample-article-angular

use ng-src instead of src

CarstenLeue opened this issue · 0 comments

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}}" />