I'm trying to make a popover (bootstrap). The layout of the popover needs to be defined in another html file. I am unable to link to the html file from my popover.
Here is my popover code:
> <div ng-class="'tile thumbnail pull-left activity-tile '+
> activityTypeStyle">
> <div>
> <div class="activity-icon">
> <div ng-class="activityTileIcon">
> <i></i>
> </div>
> </div>
> <div class="activity-detail">
> <div class="link"><a ng-click="navigate()" ng-prevent-drag >{{selection.activityName}}</a></div>
> <div class="detail" popover-append-to-body="true" popover-trigger="mouseenter" popover-placement="bottom"
> data-toggle="popover" data-placement="bottom"
> popover="{{selection.details}}">{{selection.details}}</div>
> </div>
> <div class="activity-lock" ng-show="!manualTask"><i class="fa fa-lock" title="Automated Task"></i></div>
> </div>
> </div>
'pendingApprovalPopup.html' is the layout of the popover.
Layout file is as follows:
<html>
> <head>
> <h1>header</h1>
>
>
> </head>
> <body>this is a test</body>
> </html>
Any help would be appreciated!
Thanks