aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-12-11 11:53:35 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2012-12-11 11:53:35 +0100
commit34c39341a861725b11e459d37b76d15daae72daa (patch)
tree599358c731fb34c7f7f64e6e76c6f414da912f1f
parent5d5ccf52dcbd3968a5addbe8551efcfcfa673b47 (diff)
downloadsonarqube-34c39341a861725b11e459d37b76d15daae72daa.tar.gz
sonarqube-34c39341a861725b11e459d37b76d15daae72daa.zip
SONAR-3825 fix clipping on IE7
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/measures/_sidebar.html.erb2
1 files changed, 1 insertions, 1 deletions
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) {