Skip to content

Commit 2c1ea82

Browse files
lower min screen height by 20px - iphone statusbar
1 parent b7105ca commit 2c1ea82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function checkSize() {
2020
w = $(window).width();
2121
w = (w < 320) ? 320 : w; // absolute minimum 320px
2222
h = $(window).height();
23-
h = (h < 320) ? 320 : h; // absolute minimum 320px
23+
h = (h < 300) ? 300 : h; // absolute minimum 320px minus 20px for the iphone bar
2424
hh = $('header').height();
2525
sw = $('#main').width();
2626

js/mobile.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)