From bd4c9f9651570e0065b9eef405a5dfac66696d65 Mon Sep 17 00:00:00 2001 From: James Date: Thu, 29 Sep 2011 12:03:11 -0400 Subject: [PATCH] CC-2899: Error on stream setting page can be hidden by a collapsed section - fixed --- airtime_mvc/public/js/airtime/preferences/streamsetting.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/preferences/streamsetting.js b/airtime_mvc/public/js/airtime/preferences/streamsetting.js index cb5fce607..3562f7ba2 100644 --- a/airtime_mvc/public/js/airtime/preferences/streamsetting.js +++ b/airtime_mvc/public/js/airtime/preferences/streamsetting.js @@ -2,8 +2,8 @@ function showErrorSections() { $(".errors").each(function(i){ if($(this).length > 0){ - // -250 is due to static panel on the top - $(window).scrollTop($(this).closest("div").position().top-250); + $(window).scrollTop($(this).closest("div").position().top); + $(this).closest("fieldset").removeClass('closed'); return false; } });