fabrikantencore 2.40.1 → 2.40.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21225,7 +21225,7 @@ class MobileService {
|
|
|
21225
21225
|
MobileInterface = false;
|
|
21226
21226
|
MobileInterfaceTiny = false;
|
|
21227
21227
|
NavMode = "side";
|
|
21228
|
-
NavOpened =
|
|
21228
|
+
NavOpened = true;
|
|
21229
21229
|
ActionOpened = false;
|
|
21230
21230
|
constructor() {
|
|
21231
21231
|
}
|
|
@@ -21243,11 +21243,11 @@ class MobileService {
|
|
|
21243
21243
|
this.MobileInterfaceTiny = this.ScreenWidth < 360;
|
|
21244
21244
|
if (this.MobileInterface) {
|
|
21245
21245
|
this.NavMode = "over";
|
|
21246
|
-
|
|
21246
|
+
this.NavOpened = false;
|
|
21247
21247
|
}
|
|
21248
21248
|
else {
|
|
21249
21249
|
this.NavMode = "side";
|
|
21250
|
-
|
|
21250
|
+
this.NavOpened = true;
|
|
21251
21251
|
}
|
|
21252
21252
|
ChangeDetector.detectChanges();
|
|
21253
21253
|
}
|