@mjhls/mjh-framework 1.0.592 → 1.0.593
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/README.md +1 -1
- package/dist/cjs/GridContent.js +1 -1
- package/dist/esm/GridContent.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cjs/GridContent.js
CHANGED
|
@@ -389,7 +389,7 @@ var GridContent = function (_React$Component) {
|
|
|
389
389
|
// Checking lgInfeedAd flag in desktop view ( window >= 1400px ).
|
|
390
390
|
if (lgInfeedAd && typeof window !== 'undefined' && window.innerWidth >= 1400) {
|
|
391
391
|
brandInsight.interval = 8;
|
|
392
|
-
} else {
|
|
392
|
+
} else if (typeof window !== 'undefined' && window.innerWidth < 1400) {
|
|
393
393
|
brandInsight.interval = 5;
|
|
394
394
|
posts = data;
|
|
395
395
|
}
|
package/dist/esm/GridContent.js
CHANGED
|
@@ -383,7 +383,7 @@ var GridContent = function (_React$Component) {
|
|
|
383
383
|
// Checking lgInfeedAd flag in desktop view ( window >= 1400px ).
|
|
384
384
|
if (lgInfeedAd && typeof window !== 'undefined' && window.innerWidth >= 1400) {
|
|
385
385
|
brandInsight.interval = 8;
|
|
386
|
-
} else {
|
|
386
|
+
} else if (typeof window !== 'undefined' && window.innerWidth < 1400) {
|
|
387
387
|
brandInsight.interval = 5;
|
|
388
388
|
posts = data;
|
|
389
389
|
}
|