aboutsummaryrefslogtreecommitdiffstats
path: root/www/js/views/fms.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/views/fms.js')
-rw-r--r--www/js/views/fms.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/www/js/views/fms.js b/www/js/views/fms.js
index ea21783..53cdc66 100644
--- a/www/js/views/fms.js
+++ b/www/js/views/fms.js
@@ -42,7 +42,11 @@
viewHeight = $(window).height(),
contentHeight = viewHeight - header.outerHeight() - this.bottomMargin;
- content.height( contentHeight - top );
+ this.setHeight( content, contentHeight - top );
+ },
+
+ setHeight: function(content, height) {
+ content.height(height);
},
afterRender: function() {},