Having some trouble with this block of code I have:
<div class="image" ng-repeat="image in images">
<img src="{{image.url}}"></img>
</div>
It seems that the image sources are being set correctly, but I keep getting an error while the DOM is still loading:
Project/%7B%7Bimage.url%7D%7D net::ERR_FILE_NOT_FOUND
This indicates that even before my angular code has a chance to manipulate the DOM, the browser is already trying to load the image resource {{image.url}}
. Any suggestions on how to prevent this issue from occurring?