valpas
Results
2
comments of
valpas
same problem with angular 7.1, I need to use the setData function but cropper is not instantiated in my modal :/ there is an event when cropper is ready ?
Finally I found a solution with Material Dialog ``` @ViewChild('angularCropper') public angularCropper: CropperComponent; constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data) { } ngOnInit() { this.dialogRef.afterOpened().subscribe(() => { console.log("after modal opened");...