Skip to content

Commit

Permalink
Merge pull request #1198 from dgreif/spinner-over-custom-form
Browse files Browse the repository at this point in the history
fix: show custom-ui spinner on top of schema forms
  • Loading branch information
oznu committed Aug 8, 2021
2 parents 5953127 + 8287fc9 commit 0d50244
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ <h5 class="modal-title">{{ plugin.displayName || plugin.name }}</h5>
<i class="fa fa-cog fa-spin" style="font-size: 72px;"></i>
</div>

<div *ngIf="pluginSpinner"
class="loading-overlay text-center primary-text d-flex align-items-center justify-content-center">
<i class="fa fa-cog fa-spin" style="font-size: 72px;"></i>
</div>

<iframe width="100%" height="1px;" #custompluginui
sandbox="allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-downloads allow-forms"
style="border: 0;">
Expand All @@ -43,6 +38,11 @@ <h5 class="modal-title">{{ plugin.displayName || plugin.name }}</h5>
</button>
</div>
</div>

<div *ngIf="pluginSpinner"
class="loading-overlay text-center primary-text d-flex align-items-center justify-content-center">
<i class="fa fa-cog fa-spin" style="font-size: 72px;"></i>
</div>
</div>

<div class="modal-footer justify-content-between">
Expand Down Expand Up @@ -73,4 +73,4 @@ <h5 class="modal-title">{{ plugin.displayName || plugin.name }}</h5>
</div>


</div>
</div>

0 comments on commit 0d50244

Please sign in to comment.