Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119651000
branch-ul-f.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
Sat, Jun 28, 06:50
Size
642 B
Mime Type
text/x-java
Expires
Mon, Jun 30, 06:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27051587
Attached To
R8244 Eawag_Swing_Weight_Elicitation
branch-ul-f.component.ts
View Options
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-branch-ul-f',
templateUrl: './branch-ul-f.component.html',
styleUrls: ['./branch-ul-f.component.css']
})
export class BranchUlFComponent implements OnInit {
feedback : String;
constructor(private router: Router) { }
next(value){
var itemOrder = value;
console.log(itemOrder);
// Save data to sessionStorage
sessionStorage.setItem('feedbackul', JSON.stringify(itemOrder));
// Get saved data from sessionStorage
this.router.navigateByUrl('/survey-v1/end');
}
ngOnInit() {
}
}
Event Timeline
Log In to Comment