Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120002431
hierarchy.component.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 1, 06:00
Size
709 B
Mime Type
text/x-java
Expires
Thu, Jul 3, 06:00 (2 d)
Engine
blob
Format
Raw Data
Handle
27104845
Attached To
R8244 Eawag_Swing_Weight_Elicitation
hierarchy.component.ts
View Options
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { AuthenticationService } from '../authentication.service';
@Component({
selector: 'app-hierarchy',
templateUrl: './hierarchy.component.html',
styleUrls: ['./hierarchy.component.css']
})
export class HierarchyComponent implements OnInit {
constructor(private router: Router, public auth: AuthenticationService) { }
admin(){
this.router.navigateByUrl('/admin');
}
results(){
this.router.navigateByUrl('/results');
}
surveylist(){
this.router.navigateByUrl('/surveylist');
}
newsurvey(){
this.router.navigateByUrl('/newsurvey');
}
hierarchy(){
}
ngOnInit() {
}
}
Event Timeline
Log In to Comment