referenced notes for when we implement that search...

This commit is contained in:
Jason Wall 2020-08-07 21:17:34 -04:00
parent cd0793e3a5
commit 80be335d2b
2 changed files with 10 additions and 0 deletions

View File

@ -45,6 +45,14 @@
</ng-container>
</div>
</ng-container>
<mat-expansion-panel *ngIf="hasNotes">
<mat-expansion-panel-header>
<mat-panel-title>
Note References
</mat-panel-title>
</mat-expansion-panel-header>
<p>note link, note link, note link...</p>
</mat-expansion-panel>
</div>
<div class="card-actions">
<span class="card-actions-left">

View File

@ -24,6 +24,8 @@ export class PassageCardComponent extends CardComponent implements OnInit {
displaySettings$ = this.appService.select((state) => state.displaySettings.value);
hasNotes = false;
@ViewChild('passage') passageElement: ElementRef;
constructor(protected elementRef: ElementRef, private appService: AppService, public dialog: MatDialog) {