1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

frontend footer

This commit is contained in:
Kyle Spearrin
2018-06-11 12:06:57 -04:00
parent f1651078e4
commit ba6451856a
3 changed files with 12 additions and 1 deletions

View File

@@ -4,12 +4,19 @@ import {
OnInit,
} from '@angular/core';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
@Component({
selector: 'app-frontend-layout',
templateUrl: 'frontend-layout.component.html',
})
export class FrontendLayoutComponent implements OnInit, OnDestroy {
version: string;
constructor(private platformUtilsService: PlatformUtilsService) { }
ngOnInit() {
this.version = this.platformUtilsService.getApplicationVersion();
document.body.classList.add('layout_frontend');
}