Newer
Older
import { Router, ActivatedRoute } from '@angular/router';
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",
})
export class MenuNavComponent implements OnInit {
lang: any = LANG;
coreUrl : string;
constructor(public http: HttpClient, private _location: Location, private _router: Router, private activatedRoute:ActivatedRoute) {
this.router.navigate(['../'],{ relativeTo: this.activatedRoute });