diff options
author | Struan Donald <struan@exo.org.uk> | 2013-06-03 11:19:34 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-06-03 11:19:34 +0100 |
commit | e3e17830ea9db8c139d4a691a4ff7adf8343996e (patch) | |
tree | 0cce8e82a83ca0e5f540c7165626d9fe9e094e12 /www/js | |
parent | 363d923a43c0ee39af39250c2815c8a04703b69b (diff) |
small screen height correction to stop overscroll on iOS
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/views/fms.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/views/fms.js b/www/js/views/fms.js index dbde3e7..f78e1aa 100644 --- a/www/js/views/fms.js +++ b/www/js/views/fms.js @@ -37,7 +37,7 @@ var screen = $(window).height(), header = $('[data-role=header]').height(), footer = $('[data-role=footer]').height(), - content = screen - header - footer; + content = screen - header - footer - 5; $('[data-role=content]').css({'height': content }); }, |