From a0b39c280a9abe4224b67eee59fbc14a4417de3b Mon Sep 17 00:00:00 2001 From: Konstantinos Kamaropoulos Date: Tue, 3 Mar 2020 03:16:49 +0200 Subject: [PATCH] docs: Header component comments --- src/app/shell/header/header.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/shell/header/header.component.ts b/src/app/shell/header/header.component.ts index 63689be..6621d40 100644 --- a/src/app/shell/header/header.component.ts +++ b/src/app/shell/header/header.component.ts @@ -11,6 +11,9 @@ import { LogsService } from '@app/logs.service'; export class HeaderComponent implements OnInit { menuHidden = true; + // This file is prety much the defult boilerplate header, except for the logService object. + // We keep this here for a handy reference to the liveUpdates attribute of the LogsService, + // so we can turn it on and off from the toggle in the header. constructor(private i18nService: I18nService, public logService: LogsService) {} ngOnInit() {}