I was using this angularjs tooltip library to show tooltips.
Here's my HTML:
<span tooltips tooltip-title="Recommenders" tooltip-show-trigger="click" tooltip-view="/static/templates/tooltips/recommenders.html" tooltip-view-ctrl="FeedCtrl"></span>
Here's my tooltip partial:
<div ng-repeat="recommender in recommenders_list">
{{recommender}}
</div>
The problem I am facing is that when I update the 'recommenders_list' array in my controller, the same is not reflected in the tooltip template. How can I update my tooltip partial?
look at this example, is really basic but in this way i hope you can understand and find where could be your problem.