Skip to content
Snippets Groups Projects
menu-nav.component.ts 928 B
Newer Older
  • Learn to ignore specific revisions
  • Alex ORLUC's avatar
    Alex ORLUC committed
    import { Component, OnInit } from '@angular/core';
    
    import { Router, ActivatedRoute } from '@angular/router';
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    import { HttpClient } from '@angular/common/http';
    import {Location} from '@angular/common';
    import { LANG } from '../translate.component';
    
    declare function $j(selector: any) : any;
    
    declare var angularGlobals : any;
    
    
    @Component({
        selector: 'menu-nav',
    
        templateUrl :   "../../../../Views/menuNav.component.html",
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    })
    export class MenuNavComponent implements OnInit {
    
        lang: any = LANG;
        coreUrl                     : string;
    
    Alex ORLUC's avatar
     
    Alex ORLUC committed
        router :any;
    
    Alex ORLUC's avatar
    Alex ORLUC committed
    
    
        constructor(public http: HttpClient, private _location: Location, private _router: Router, private activatedRoute:ActivatedRoute) {
    
    Alex ORLUC's avatar
     
    Alex ORLUC committed
            this.router = _router;
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        }
    
    
    Alex ORLUC's avatar
     
    Alex ORLUC committed
        ngOnInit(): void {      
    
    Alex ORLUC's avatar
    Alex ORLUC committed
            this.coreUrl = angularGlobals.coreUrl;
        }
    
        backClicked() {
    
            this.router.navigate(['../'],{ relativeTo: this.activatedRoute });
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        }
    }