I am using Foundation 5 with AngularJS in my project. I have the following use case:
- Click on a 'div' which is inside an ng-repeat.
- Fetch a list specific to that div in response to the click.
- Show that list in an ng-repeat in a tooltip/popover of that div(which was clicked).
How do I go about generating that tooltip?
I tried:
- this library but I encountered some issues as mentioned in this question.
- angular-foundation, but the popovers here don't have a popover-template functionality(like in ui.bootstrap).
AND I don't want to use ui.bootstrap because I am using Foundation 5 (Its a bad idea, right?).