diff options
author | Struan Donald <struan@exo.org.uk> | 2013-06-26 17:02:25 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-06-26 17:02:25 +0100 |
commit | f9d249249a567b554288ace3ebdb0e1eb9dda66a (patch) | |
tree | 5cdcdda88a470a55a8d1b18b3f49c4581adc3fd9 /www/js/views/details.js | |
parent | 13472b17d2f4c71e24b07d1178e1b99c3c9f9da2 (diff) |
change page height setting code so it works on all pages and update
details form height setting code to work with it
Diffstat (limited to 'www/js/views/details.js')
-rw-r--r-- | www/js/views/details.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/js/views/details.js b/www/js/views/details.js index 996ece9..5eb6b85 100644 --- a/www/js/views/details.js +++ b/www/js/views/details.js @@ -5,6 +5,7 @@ id: 'details-page', prev: 'photo', next: 'submit-start', + bottomMargin: -20, events: { 'pagehide': 'destroy', @@ -28,11 +29,12 @@ }, beforeDisplay: function() { + this.fixPageHeight(); var header = this.$("div[data-role='header']:visible"), detail = this.$('#form_detail'), top = detail.position().top, viewHeight = $(window).height(), - contentHeight = viewHeight - header.outerHeight(); + contentHeight = viewHeight - header.outerHeight() + 15; detail.height( contentHeight - top ); }, |