PickwickSoft / innovedu

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
2 years ago2 years old
Documentation comment not found for method definition saveAsImage
30    this.qrCodeDownloadLink = url;
31  }
32
33  saveAsImage(parent: any): void {34    let parentElement = null;
35
36    if (this.elementType === 'canvas') {
Documentation comment not found for method definition cancel
18
19  constructor(protected projectService: ProjectService, protected activeModal: NgbActiveModal, private location: Location) {}
20
21  cancel(): void {22    this.activeModal.dismiss();
23  }
24
Documentation comment not found for method definition getURLForProject
22    this.activeModal.dismiss();
23  }
24
25  getURLForProject(project: IProject): string {26    return `${location.origin}/project/${project.id!}/view`;
27  }
28
Documentation comment not found for class declaration ProjectQrDialogComponent
11  templateUrl: './project-qr-dialog.component.html',
12  styleUrls: ['./project-qr-dialog.component.scss'],
13})
14export class ProjectQrDialogComponent {15  project?: IProject;
16  public qrCodeDownloadLink: SafeUrl = '';
17  elementType: QRCodeElementType = 'canvas' as QRCodeElementType;
Documentation comment not found for method definition onChangeURL
26    return `${location.origin}/project/${project.id!}/view`;
27  }
28
29  onChangeURL(url: SafeUrl): void {30    this.qrCodeDownloadLink = url;
31  }
32