From 34fca29dd392cf30a6bfe9889e69db0fae6521bb Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Thu, 23 Oct 2014 17:10:21 +0000 Subject: [PATCH] fix the animated scroll target on the ssl panel to scroll so that the header is actually visible and not covered by the nav bar --- management/templates/ssl.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/templates/ssl.html b/management/templates/ssl.html index 1e03787f..3c065907 100644 --- a/management/templates/ssl.html +++ b/management/templates/ssl.html @@ -83,7 +83,7 @@ function ssl_install(elem) { $('#csr_info').slideDown(); $('#ssl_csr').text('Loading...'); show_csr(); - $('html, body').animate({ scrollTop: $('#ssl_install_header').offset().top }) + $('html, body').animate({ scrollTop: $('#ssl_install_header').offset().top - $('.navbar-fixed-top').height() - 20 }) return false; }