diff --git a/src/app/modules/admin/ui/confirmation-dialog/confirmation-dialog.component.html b/src/app/modules/admin/ui/confirmation-dialog/confirmation-dialog.component.html index 5fa36942..a815ba47 100644 --- a/src/app/modules/admin/ui/confirmation-dialog/confirmation-dialog.component.html +++ b/src/app/modules/admin/ui/confirmation-dialog/confirmation-dialog.component.html @@ -24,7 +24,7 @@
- One of the repetitive and tedious jobs in Angular is to create confirmation dialogs. Since dialogs require their own component + One of the repetitive and tedious jobs in Angular is to create confirmation dialogs. Since dialogs require their own components you have to either create a separate component every time you need a confirmation dialog or you have to create your own confirmation dialog system that can be configured.
diff --git a/src/app/modules/admin/ui/fuse-components/services/confirmation/confirmation.component.html b/src/app/modules/admin/ui/fuse-components/services/confirmation/confirmation.component.html index 90aa2def..f52a1d7b 100644 --- a/src/app/modules/admin/ui/fuse-components/services/confirmation/confirmation.component.html +++ b/src/app/modules/admin/ui/fuse-components/services/confirmation/confirmation.component.html @@ -208,7 +208,21 @@
Since FuseConfirmationService
uses MatDialog behind the scenes, it returns
- a reference to the created dialog. Using that reference, you can access to the user input:
+ a reference to the created dialog. You can use all available methods from that reference such as
+ updateSize
and updatePosition
to further customize the dialog.
+
+ See + + https://material.angular.io/components/dialog/api#MatDialogRef + + for the complete list of available methods. +
++ Using the reference, you can also access to the user input: