From: Simon Brandhof Date: Tue, 11 Dec 2012 10:53:35 +0000 (+0100) Subject: SONAR-3825 fix clipping on IE7 X-Git-Tag: 3.4~60 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=34c39341a861725b11e459d37b76d15daae72daa;p=sonarqube.git SONAR-3825 fix clipping on IE7 --- 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) {