summaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/hbs/component-viewer/code-expand.hbs
blob: 20b5e9f12460d26eeb9a7ca2acde7ac2945ebd4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<tr class="row row-expand">
  {{#if settings.coverage}}
    <td class="stat coverage-tests"></td>
    <td class="stat coverage-conditions"></td>
  {{/if}}
  {{#if settings.duplications}}
    <td class="stat"></td>
  {{/if}}
  {{#if settings.scm}}
    <td class="stat"></td>
  {{/if}}
  <td class="stat lid">
    <button class="button-clean js-expand" data-from="{{from}}" data-to="{{to}}"><i class="icon-expand"></i></button>
  </td>
  <td class="line">
    <a class="action js-expand-all">Show full source</a>
  </td>
</tr>