@schneideress/dashboardframework 0.0.164 → 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 +7 -3
- 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 +8 -4
- package/esm5/lib/ra.dashboard.responsive.service.js +8 -4
- package/fesm2015/schneideress-dashboardframework.js +7 -3
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +7 -3
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -705,11 +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
|
+
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
710
|
+
console.log('Width---------------');
|
|
711
|
+
console.log(this.screenWidth);
|
|
712
|
+
console.log('Height--------------');
|
|
713
|
+
console.log(window.innerHeight);
|
|
714
|
+
console.log('$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$');
|
|
709
715
|
if (this.IsDesktopView) {
|
|
710
716
|
this.currentResInfo = this.resInfo[3];
|
|
711
|
-
console.log('current res info is');
|
|
712
|
-
console.log(this.currentResInfo);
|
|
713
717
|
}
|
|
714
718
|
// else if (this.IsMobile) {
|
|
715
719
|
// this.currentResInfo = this.resInfo[0];
|