Is there a way to preload images in Angular without using a spinner after the controller is initialized? I've heard about caching templates with $templateCache. Can this be used to also preload images when the template contains <img>
tags or styled DOM elements like:
<div style="background-image:url(name.jpg)"></div>
Thanks in advance!