argos/dmp-frontend/src/app/form/tableOfContents/table-of-content-section/table-of-content-section.co...

11 lines
388 B
HTML
Raw Normal View History

2017-12-05 17:56:21 +01:00
<!-- All contents in the first page -->
2017-12-11 09:10:54 +01:00
<a (click)="scrollToId(model.id,page)">{{path + ' ' + model.title}}</a>
2017-12-05 17:56:21 +01:00
<!-- All contents in the first page -->
<ul>
2017-12-06 13:16:31 +01:00
<li *ngFor="let sectionModel of model.sections let i = index">
2018-10-05 17:00:54 +02:00
<app-table-of-contents-section [page]='page' [model]="sectionModel" [index]="i" [path]="path+'.'+(i+1)"> </app-table-of-contents-section>
2017-12-06 13:16:31 +01:00
</li>
2018-10-05 17:00:54 +02:00
</ul>