Skip to content
Snippets Groups Projects
Commit 3f31abbf authored by paf's avatar paf
Browse files

lints

parent 8b48f4dd
No related branches found
No related tags found
No related merge requests found
...@@ -16,23 +16,23 @@ const localStorageTestConfigKey = 'iqb-tc-c'; ...@@ -16,23 +16,23 @@ const localStorageTestConfigKey = 'iqb-tc-c';
}) })
export class MainDataService { export class MainDataService {
public appError$ = new Subject<AppError>(); appError$ = new Subject<AppError>();
public errorReportingSilent = false; errorReportingSilent = false;
public isSpinnerOn$ = new BehaviorSubject<boolean>(false); isSpinnerOn$ = new BehaviorSubject<boolean>(false);
public progressVisualEnabled = true; progressVisualEnabled = true;
public isApiValid = true; isApiValid = true;
public apiVersion: string; apiVersion: string;
public broadcastingServiceInfo: BroadCastingServiceInfo = { status: 'none' }; broadcastingServiceInfo: BroadCastingServiceInfo = { status: 'none' };
public appConfig: AppConfig = null; appConfig: AppConfig = null;
public sysCheckAvailable = false; sysCheckAvailable = false;
public defaultTcHeaderHeight = document.documentElement.style.getPropertyValue('--tc-header-height'); defaultTcHeaderHeight = document.documentElement.style.getPropertyValue('--tc-header-height');
public defaultTcUnitTitleHeight = document.documentElement.style.getPropertyValue('--tc-unit-title-height'); defaultTcUnitTitleHeight = document.documentElement.style.getPropertyValue('--tc-unit-title-height');
public defaultTcUnitPageNavHeight = document.documentElement.style.getPropertyValue('--tc-unit-page-nav-height'); defaultTcUnitPageNavHeight = document.documentElement.style.getPropertyValue('--tc-unit-page-nav-height');
// set by app.component.ts // set by app.component.ts
public postMessage$ = new Subject<MessageEvent>(); postMessage$ = new Subject<MessageEvent>();
public appWindowHasFocus$ = new Subject<boolean>(); appWindowHasFocus$ = new Subject<boolean>();
static getAuthData(): AuthData { static getAuthData(): AuthData {
let myReturn: AuthData = null; let myReturn: AuthData = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment