diff options
Diffstat (limited to 'www/js/views')
-rw-r--r-- | www/js/views/around.js | 3 | ||||
-rw-r--r-- | www/js/views/fms.js | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/www/js/views/around.js b/www/js/views/around.js index 9bb1abe..ffc712f 100644 --- a/www/js/views/around.js +++ b/www/js/views/around.js @@ -74,6 +74,9 @@ } this.displayButtons(); FMS.locator.trackPosition(); + // FIXME: not sure why I need to do this + fixmystreet.select_feature.deactivate(); + fixmystreet.select_feature.activate(); }, positionUpdate: function( info ) { 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 }); }, |