@schneideress/dashboardframework 0.0.168 → 0.0.170
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.
- package/bundles/schneideress-dashboardframework.umd.js +7 -7
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +3 -3
- package/esm2015/lib/ra.dashboard.responsive.service.js +6 -6
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +3 -3
- package/esm5/lib/ra.dashboard.responsive.service.js +6 -6
- package/fesm2015/schneideress-dashboardframework.js +7 -7
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +7 -7
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -380,14 +380,14 @@ class RADashboardResponsiveService {
|
|
|
380
380
|
*/
|
|
381
381
|
setScreenWidth() {
|
|
382
382
|
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
383
|
-
console.log('
|
|
384
|
-
console.log(
|
|
385
|
-
console.log('
|
|
386
|
-
console.log(
|
|
383
|
+
console.log('window.outerWidth---------------');
|
|
384
|
+
console.log(window.outerWidth);
|
|
385
|
+
console.log('window.innerWidth--------------');
|
|
386
|
+
console.log(window.innerWidth);
|
|
387
387
|
console.log('Orientation---------------');
|
|
388
388
|
console.log(screen.orientation.angle);
|
|
389
389
|
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
390
|
-
this.screenWidth =
|
|
390
|
+
this.screenWidth = window.outerWidth;
|
|
391
391
|
if (this.IsDesktopView) {
|
|
392
392
|
this.currentResInfo = this.resInfo[3];
|
|
393
393
|
}
|
|
@@ -551,8 +551,8 @@ class RADashboardArea {
|
|
|
551
551
|
this.gridcellHeight = 0;
|
|
552
552
|
this.isWidgetLoaded = false;
|
|
553
553
|
this.domResized = false;
|
|
554
|
-
this.widgetHeight =
|
|
555
|
-
this.widgetWidth =
|
|
554
|
+
this.widgetHeight = 4;
|
|
555
|
+
this.widgetWidth = 4;
|
|
556
556
|
}
|
|
557
557
|
/**
|
|
558
558
|
* @param {?} event
|