aboutsummaryrefslogtreecommitdiffstats
path: root/www/js
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2013-06-03 11:19:34 +0100
committerStruan Donald <struan@exo.org.uk>2013-06-03 11:19:34 +0100
commite3e17830ea9db8c139d4a691a4ff7adf8343996e (patch)
tree0cce8e82a83ca0e5f540c7165626d9fe9e094e12 /www/js
parent363d923a43c0ee39af39250c2815c8a04703b69b (diff)
small screen height correction to stop overscroll on iOS
Diffstat (limited to 'www/js')
-rw-r--r--www/js/views/fms.js2
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 });
},