Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
<div ng-class="{'alert-success': modalContent.type === 'success', 'alert-info': modalContent.type === 'info', 'alert-warning': modalContent.type === 'warning', 'alert-danger': modalContent.type === 'danger'}"
class="modal-header">
<h3 tabindex="0"><span class="sr-only">Popup modal </span>{{modalContent.headerText}}</h3>
</div>
<div ng-if="modalContent.bodyContentUrl" class="modal-body" ng-include="modalContent.bodyContentUrl">
</div>
<div ng-if="!modalContent.bodyContentUrl" class="modal-body">
<p ng-bind-html="modalContent.bodyText"></p>
</div>
<div class="modal-footer">
<div><!-- first button is closeButton, second button is actionButton
-- closeButton gets styled with btn-primary when there is no action button -->
<button type="button" class="btn" ng-class="modalContent.actionButtonText !== null ? 'btn-secondary' : 'btn-primary'" ng-if="modalContent.closeButtonText !== null" data-ng-click="modalContent.close();">
{{modalContent.closeButtonText}}
</button>
<button class="btn btn-primary" ng-if="modalContent.actionButtonText !== null" data-ng-click="modalContent.ok();">
{{modalContent.actionButtonText}}
</button>
</div>
</div>