dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#3529 fix - Fixed cancel an delete commands on licenses
rsanchez
2017-04-17
f11e78dacb3bbf45988a5002bed3bf8e7f97d043
[common/securis.git]
/
securis
/
src
/
main
/
webapp
/
src
/
app
/
nomenu.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { Observable } from 'rxjs/Observable';
import { BaseRequestOptions, Http } from '@angular/http';
import { ToastsManager } from 'ng2-toastr/ng2-toastr';
import { AfterViewInit, Component, ViewContainerRef, ViewChild } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
import { MdIconRegistry } from '@angular/material';
import { UserService } from './user.service';
import { TdMediaService } from '@covalent/core';
import { Router } from '@angular/router';
import { TdNavigationDrawerComponent } from '@covalent/core'
// https://github.com/Teradata/covalent-quickstart/tree/develop/src/app
// https://teradata.github.io/covalent-quickstart/#/
@Component({
templateUrl: 'src/app/nomenu.component.html'
})
export class NoMenuComponent {
securisVersion : string;
constructor() {
}
}