We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca8bcc1 commit ed40467Copy full SHA for ed40467
js/app.js
@@ -283,7 +283,7 @@ function checkSize() {
283
wrect = document.body.getBoundingClientRect();
284
// chrome seems to calculate the body bounding box differently from every other browser
285
if (!!window.chrome) {
286
- w_fix = (wrect.width === Math.floor(wrect.width)) ? 1 : 0;
+ w_fix = (w >= wrect.width) ? 1 : 0;
287
} else {
288
w_fix = (w === Math.floor(wrect.width)) ? 0 : 1;
289
}
0 commit comments