@schneideress/dashboardframework 0.0.165 → 0.0.166
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 +5 -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.responsive.service.js +6 -8
- package/esm5/lib/ra.dashboard.responsive.service.js +6 -8
- package/fesm2015/schneideress-dashboardframework.js +5 -7
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +5 -7
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -705,15 +705,15 @@
|
|
|
705
705
|
*/
|
|
706
706
|
function () {
|
|
707
707
|
var _this = this;
|
|
708
|
-
this.screenWidth = screen.width;
|
|
708
|
+
this.screenWidth = window.innerWidth; //screen.width;
|
|
709
709
|
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
710
|
+
console.log('Width---------------');
|
|
710
711
|
console.log(this.screenWidth);
|
|
711
|
-
console.log(
|
|
712
|
-
console.log(
|
|
712
|
+
console.log('Height--------------');
|
|
713
|
+
console.log(window.innerHeight);
|
|
714
|
+
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
713
715
|
if (this.IsDesktopView) {
|
|
714
716
|
this.currentResInfo = this.resInfo[3];
|
|
715
|
-
console.log('current res info is');
|
|
716
|
-
console.log(this.currentResInfo);
|
|
717
717
|
}
|
|
718
718
|
// else if (this.IsMobile) {
|
|
719
719
|
// this.currentResInfo = this.resInfo[0];
|
|
@@ -727,8 +727,6 @@
|
|
|
727
727
|
return item.end >= _this.screenWidth && item.start <= _this.screenWidth;
|
|
728
728
|
}))[0];
|
|
729
729
|
}
|
|
730
|
-
console.log(this.currentResInfo);
|
|
731
|
-
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
732
730
|
};
|
|
733
731
|
Object.defineProperty(RADashboardResponsiveService.prototype, "IsDesktopView", {
|
|
734
732
|
get: /**
|