-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathline.html
36 lines (36 loc) · 1.58 KB
/
line.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{{#if this.miss}}
{{#if this.chunks}}
<tr class="chunks">
<td class="line" data-tooltip>{{@key}}</td>
{{> lint this.lintErrors }}
<td class="hits" data-tooltip>{{this.percent}}</td>
<td class="source">{{#each this.chunks}}{{#if this.miss}}<div class="miss {{this.miss}}" data-tooltip>{{this.source}}</div>{{else}}<div>{{this.source}}</div>{{/if}}{{/each}}</td>
{{#if sourcemaps}}
<td class="sourcemaps file" data-tooltip>{{this.originalFilename}}</td>
<td class="sourcemaps line" data-tooltip>{{this.originalLine}}</td>
{{/if}}
</tr>
{{else}}
<tr class="miss">
<td class="line" data-tooltip>{{@key}}</td>
{{> lint this.lintErrors }}
<td class="hits" data-tooltip>{{this.percent}}</td>
<td class="source" data-tooltip>{{this.source}}</td>
{{#if sourcemaps}}
<td class="sourcemaps file" data-tooltip>{{this.originalFilename}}</td>
<td class="sourcemaps line" data-tooltip>{{this.originalLine}}</td>
{{/if}}
</tr>
{{/if}}
{{else}}
<tr class="hit">
<td class="line" data-tooltip>{{@key}}</td>
{{> lint this.lintErrors }}
<td class="hits" data-tooltip>{{hits this.hits}}</td>
<td class="source">{{this.source}}</td>
{{#if sourcemaps}}
<td class="sourcemaps file" data-tooltip>{{this.originalFilename}}</td>
<td class="sourcemaps line" data-tooltip>{{this.originalLine}}</td>
{{/if}}
</tr>
{{/if}}