diff options
-rw-r--r-- | www/js/views/fms.js | 3 | ||||
-rw-r--r-- | www/js/views/reports.js | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/www/js/views/fms.js b/www/js/views/fms.js index 918a57c..ea21783 100644 --- a/www/js/views/fms.js +++ b/www/js/views/fms.js @@ -3,6 +3,7 @@ FMSView: Backbone.View.extend({ tag: 'div', bottomMargin: 20, + contentSelector: '[data-role="content"]', events: { 'pagehide': 'destroy', @@ -36,7 +37,7 @@ fixPageHeight: function() { var header = this.$("div[data-role='header']:visible"), - content = this.$('[data-role="content"]'), + content = this.$(this.contentSelector), top = content.position().top, viewHeight = $(window).height(), contentHeight = viewHeight - header.outerHeight() - this.bottomMargin; diff --git a/www/js/views/reports.js b/www/js/views/reports.js index f5c1cbb..de2b3c3 100644 --- a/www/js/views/reports.js +++ b/www/js/views/reports.js @@ -4,6 +4,7 @@ template: 'reports', id: 'reports', next: 'home', + contentSelector: '#drafts', events: { 'pagehide': 'destroy', |