Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91894852
crossref-editor-component.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
Fri, Nov 15, 13:16
Size
769 B
Mime Type
text/x-java
Expires
Sun, Nov 17, 13:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22343139
Attached To
rNIETZSCHEBETAAPP Nietzsche-Beta-App
crossref-editor-component.component.ts
View Options
import { Component, OnInit } from '@angular/core';
import {NavTreeDef} from '../models/models';
import {CROSSREF_TREE_DEFS, GENERIC_ROOT_TREE_DEF} from '../constants';
import {NavigationServiceService} from '../services/navigation-service.service';
@Component({
selector: 'app-crossref-editor-component',
templateUrl: './crossref-editor-component.component.html',
styleUrls: ['./crossref-editor-component.component.scss']
})
export class CrossrefEditorComponentComponent implements OnInit {
constructor(private naviService: NavigationServiceService) { }
ngOnInit() {
this.naviService.updateRoute({['navBarOpenState'] : false});
this.treeDefs = CROSSREF_TREE_DEFS;
this.generic = false;
}
treeDefs: NavTreeDef[] = [];
generic: boolean;
}
Event Timeline
Log In to Comment