diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-25 14:08:01 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-25 14:08:01 +0100 |
commit | 14b88085d71c2904ad18e226a19855ba7e721524 (patch) | |
tree | 259c25e52d7ebb753c8cbe4b0bb0bcbda2e8f740 | |
parent | fb6e0ac33787e7f367a18ca4029d3d6839f794ff (diff) | |
download | sonarqube-14b88085d71c2904ad18e226a19855ba7e721524.tar.gz sonarqube-14b88085d71c2904ad18e226a19855ba7e721524.zip |
Add HTML classe
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index.html.erb index 185a8f16daf..a84a963d0e6 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_index.html.erb @@ -106,7 +106,7 @@ <td class="ind <%= hits_status -%>" title="<%= message('coverage_viewer.line_covered_by_x_tests', {:params => line.covered_lines.to_s}) if line.covered_lines > 0 -%>"> <% if line.covered_lines > 0 %> <a href="<%= ApplicationController.root_context -%>/test/testable/<%= h @snapshot.resource.key -%>?line=<%= index+1 -%>" - onclick="openAccordionItem(this.href, this); return false;"><%= line.covered_lines -%></a> + class="sources-testable-link-<%= index+1 -%>" onclick="openAccordionItem(this.href, this); return false;"><%= line.covered_lines -%></a> <% end %> </td> <td class="ind <%= conditions_status -%>"> |