Fixes of the darkMode
[nonrtric.git] / dashboard / webapp-frontend / src / app / services / ui / loading-dialog.service.ts
index bf0830a..d40928b 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -29,10 +29,10 @@ import { UiService } from './ui.service';
 export class LoadingDialogService {
 
   darkMode: boolean;
-  panelClass: string = "";
+  panelClass = '';
 
   constructor(private dialog: MatDialog,
-    public ui: UiService) { }
+    private ui: UiService) { }
 
   private loadingDialogRef: MatDialogRef<LoadingDialogComponent>;
 
@@ -41,9 +41,9 @@ export class LoadingDialogService {
       this.darkMode = isDark;
     });
     if (this.darkMode) {
-      this.panelClass = "dark-theme";
+      this.panelClass = 'dark-theme';
     } else {
-      this.panelClass = "";
+      this.panelClass = '';
     }
     this.loadingDialogRef = this.dialog.open(LoadingDialogComponent, {
       panelClass: this.panelClass,
@@ -57,7 +57,7 @@ export class LoadingDialogService {
   }
 
   stopLoading() {
-    this.loadingDialogRef.close()
+    this.loadingDialogRef.close();
   }
 
 }