I'm having trouble getting my ui-view to update dynamically using ng-repeat. I'm not sure if what I want to do is even possible because when I add static objects to intro.html, they display properly.
Thank you for any assistance,
JS
}).state('app.contact', {
url: '/contact',
views: {
'menuContent': {
templateUrl: 'app/contact/contact.html',
controller: 'ContactController'
}
}
}).state('app.contact.intro', {
url: '/intro',
templateUrl: 'app/contact/intro.html'
contact.html
<ion-view view-title="Contact">
<ion-content class="has-header">
<ui-view>
</ui-view>
</ion-content>
</ion-view>
intro.html
<div ng-repeat="item in list">
{{ item }}
</div>