summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/layout/components/footer/footer.component.ts
diff options
context:
space:
mode:
authorSudarshan Kumar <sudarshan.kumar@att.com>2019-12-18 22:32:06 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2019-12-18 22:41:02 +0530
commit1515595ee5302e3380a65a7c7cace0905e2a38f1 (patch)
treeeeb7a4cf8ef12bf762eaa025d09d2d07eb1274e9 /portal-FE-common/src/app/layout/components/footer/footer.component.ts
parent89498fdaf633640c04f9179e0d1514a89f36a18e (diff)
Added portal-FE-os project
Added portal-FE-os project and included layout components which is having header,footer,global-serach,header-menu,search-users,sidebar,tabbar,userbar components. Removed layout components from portal-FE-common Issue-ID: PORTAL-795 Change-Id: I5764a851ef3b1ba701117759dac38909f129aabd Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'portal-FE-common/src/app/layout/components/footer/footer.component.ts')
-rw-r--r--portal-FE-common/src/app/layout/components/footer/footer.component.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/portal-FE-common/src/app/layout/components/footer/footer.component.ts b/portal-FE-common/src/app/layout/components/footer/footer.component.ts
deleted file mode 100644
index 9b5cc8f6..00000000
--- a/portal-FE-common/src/app/layout/components/footer/footer.component.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import { ManifestService } from 'src/app/shared/services';
-
-
-@Component({
- selector: 'app-footer',
- templateUrl: './footer.component.html',
- styleUrls: ['./footer.component.scss']
-})
-export class FooterComponent implements OnInit {
-
- buildVersion: string;
- constructor(private manifest: ManifestService) { }
-
- ngOnInit() {
- this.buildVersion = '';
- this.manifestDetails();
- }
-
- manifestDetails() {
- this.manifest.getManifest().subscribe((_res: any) => {
- this.buildVersion = _res.manifest['Build-Number'];
- }, (_err) => {
-
- });
- }
-}