From 34c39341a861725b11e459d37b76d15daae72daa Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Tue, 11 Dec 2012 11:53:35 +0100 Subject: [PATCH] SONAR-3825 fix clipping on IE7 --- .../main/webapp/WEB-INF/app/views/measures/_sidebar.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_sidebar.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_sidebar.html.erb index 0ade74a697c..4a732647086 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_sidebar.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_sidebar.html.erb @@ -11,7 +11,7 @@ function submitSearch() { // remove empty parameters from URL var form = $j("#search-form"); - form.find(':input[value=""]').remove(); + form.find(':input[value=""]').attr('disabled', 'disabled'); return true; } function removeUrlAttr(url, attribute_key) { -- 2.39.5