client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
18 lines (16 loc) • 562 B
HTML
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close" ng-click="ok()">
<span aria-hidden="true"><i class="fa fa-times fa-2x"></i></span>
</button>
<h3 class="modal-title">{{title}}</h3>
<h3 ng-if="!title"> Document</h3>
</div>
<div>
<div ng-if="!src" class="text-center">
<i class="fa fa-spinner fa-pulse fa-4x"></i>
</div>
<div ng-if="src" class="modal-content-inner">
<remote-content src="src" content-type="pdf">
</remote-content>
</div>
</div>