mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-13 00:00:55 +03:00
15 lines
618 B
HTML
15 lines
618 B
HTML
<h4 mat-dialog-title>{{dialogTitle}}</h4>
|
|
<mat-dialog-content>
|
|
<div style="margin-bottom: 10px;">
|
|
{{dialogText}}
|
|
</div>
|
|
</mat-dialog-content>
|
|
<mat-dialog-actions>
|
|
<!-- The mat-dialog-close directive optionally accepts a value as a result for the dialog. -->
|
|
<button color="primary" mat-flat-button type="submit" (click)="confirmClicked()">{{submitText}}</button>
|
|
<div class="mat-spinner" *ngIf="submitClicked">
|
|
<mat-spinner [diameter]="25"></mat-spinner>
|
|
</div>
|
|
<span class="spacer"></span>
|
|
<button style="float: right;" mat-stroked-button mat-dialog-close>Cancel</button>
|
|
</mat-dialog-actions> |