argos/dmp-frontend/src/app/form/tableOfContents/table-of-contents.component.ts

27 lines
707 B
TypeScript
Raw Normal View History

2017-12-22 14:42:47 +01:00
import { DatasetProfileDefinitionModel } from '../../models/DatasetProfileDefinitionModel';
2017-12-05 17:56:21 +01:00
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
//import * as $ from '../../../../node_modules/jquery/dist/jquery'
2017-12-14 12:58:59 +01:00
//import * as scroll from '../../../assets/jquery.scrollTo.min.js';
2017-12-05 17:56:21 +01:00
@Component({
2018-10-05 17:00:54 +02:00
selector: 'app-table-of-content',
templateUrl: './table-of-contents.component.html',
styleUrls: ['./toc.component.css'],
providers: []
2017-12-05 17:56:21 +01:00
})
2018-07-11 15:47:36 +02:00
export class TableOfContentsComponent implements OnInit {
2017-12-05 17:56:21 +01:00
2018-10-05 17:00:54 +02:00
@Input()
public model: DatasetProfileDefinitionModel;
public path = '';
2017-12-05 17:56:21 +01:00
/* @Output()
setPage:EventEmitter<number> = new EventEmitter<number>();
2018-07-11 15:47:36 +02:00
*/ ngOnInit() {
2017-12-05 17:56:21 +01:00
2018-10-05 17:00:54 +02:00
}
2017-12-05 17:56:21 +01:00
2018-07-11 15:47:36 +02:00
}