From 3f31abbf945474bd4a3d2b6a3d52be9d797b8cfa Mon Sep 17 00:00:00 2001 From: paf <paf@titelfrei.de> Date: Thu, 15 Apr 2021 08:35:53 +0200 Subject: [PATCH] lints --- src/app/maindata.service.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/maindata.service.ts b/src/app/maindata.service.ts index acbb929c..6d5c7f31 100644 --- a/src/app/maindata.service.ts +++ b/src/app/maindata.service.ts @@ -16,23 +16,23 @@ const localStorageTestConfigKey = 'iqb-tc-c'; }) export class MainDataService { - public appError$ = new Subject<AppError>(); - public errorReportingSilent = false; - public isSpinnerOn$ = new BehaviorSubject<boolean>(false); - public progressVisualEnabled = true; - public isApiValid = true; - public apiVersion: string; - public broadcastingServiceInfo: BroadCastingServiceInfo = { status: 'none' }; - public appConfig: AppConfig = null; - public sysCheckAvailable = false; + appError$ = new Subject<AppError>(); + errorReportingSilent = false; + isSpinnerOn$ = new BehaviorSubject<boolean>(false); + progressVisualEnabled = true; + isApiValid = true; + apiVersion: string; + broadcastingServiceInfo: BroadCastingServiceInfo = { status: 'none' }; + appConfig: AppConfig = null; + sysCheckAvailable = false; - public defaultTcHeaderHeight = document.documentElement.style.getPropertyValue('--tc-header-height'); - public defaultTcUnitTitleHeight = document.documentElement.style.getPropertyValue('--tc-unit-title-height'); - public defaultTcUnitPageNavHeight = document.documentElement.style.getPropertyValue('--tc-unit-page-nav-height'); + defaultTcHeaderHeight = document.documentElement.style.getPropertyValue('--tc-header-height'); + defaultTcUnitTitleHeight = document.documentElement.style.getPropertyValue('--tc-unit-title-height'); + defaultTcUnitPageNavHeight = document.documentElement.style.getPropertyValue('--tc-unit-page-nav-height'); // set by app.component.ts - public postMessage$ = new Subject<MessageEvent>(); - public appWindowHasFocus$ = new Subject<boolean>(); + postMessage$ = new Subject<MessageEvent>(); + appWindowHasFocus$ = new Subject<boolean>(); static getAuthData(): AuthData { let myReturn: AuthData = null; -- GitLab