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

27 lines
719 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({
selector: 'table-of-content',
2018-01-30 10:35:26 +01:00
templateUrl: './table-of-contents.component.html',
2017-12-05 17:56:21 +01:00
styleUrls: ['./toc.component.css'],
2018-07-11 15:47:36 +02:00
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-07-11 15:47:36 +02:00
@Input()
public model: DatasetProfileDefinitionModel;
public path: string = "";
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-07-11 15:47:36 +02:00
}
2017-12-05 17:56:21 +01:00
2018-07-11 15:47:36 +02:00
}