I'm new to Angular.js (more of a CSS/jQuery guy) and I can't work out why my ng-repeat isn't working; I've done all the video tutorials on CodeSchool and thought I had the basics behind Angular -down- but... this isn't repeating. At all. In fact, none of the Angular commands I thought would work are. I can't get ng-href to update, I can't get ng-style to style, and it's all just a mess. Is there an issue when applying static styles to Angular elements I don't know about? Have I royally screwed up something?
Here's my jsfiddle of what is causing me so much grief:
http://jsfiddle.net/8s8vcdxr/6/
Here's the HTML I'm using, and the rest is obviously over on the fiddle:
<div ng-app="thisWebsite">
<div class="column" ng-controller="myController as control">
<section class="links"
ng-repeat="instance in control.instances"
ng-style="'background':'url(' + {instance.imageUrl} + ') no-repeat;'">
<a ng-href="{{instance.pageLink}}">
<div class="link_overlay"> {{instance.title}} </div>
</a>
</section>
</div>
</div>
Where am I going wrong?