diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-11-03 17:18:05 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-11-03 17:18:05 +0100 |
commit | c441c6755f47c049570ff013d4430b84c25e01d4 (patch) | |
tree | 5e36ff973fd63ff2c8e00d8b828cff8ea676e9aa | |
parent | 0374e42d350a27b56c0e7f6b82d959ec9fc81e38 (diff) | |
download | sonarqube-c441c6755f47c049570ff013d4430b84c25e01d4.tar.gz sonarqube-c441c6755f47c049570ff013d4430b84c25e01d4.zip |
SONAR-2830 An horizontal scrollbar appears in the bottom of code viewers in IE
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb | 1 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb index 7df550d7529..a41f2036dc3 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb @@ -69,7 +69,6 @@ </td> <td class="right last" > <%= format_measure(measure, :skip_span_id => true, :period => @period) -%> - <!--[if IE]> <![endif]--> </td> </tr> <% end %> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb index 1f2a829d1b2..37fac4ce8ad 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb @@ -106,7 +106,6 @@ </td> <td class="left last"> <%= barchart(:width => 70, :percent => (100 * value / max).to_i, :color => (@period ? '#cc0000' : '#777')) if max>0 %> - <!--[if IE]> <![endif]--> </td> </tr> <% end %> @@ -159,7 +158,6 @@ </td> <td class="right last" nowrap> <%= @period ? format_variation(measure, :period => @period, :style => 'light') : measure.formatted_value -%> - <!--[if IE]> <![endif]--> </td> </tr> <% end %> |