|
18 | 18 | Pacts
|
19 | 19 | %table.table.table-bordered.table-striped{ id: 'relationships' }
|
20 | 20 | %thead
|
21 |
| - %th.consumer |
22 |
| - Consumer |
23 |
| - %span.glyphicon.glyphicon-sort.relationships-sort |
24 |
| - %th.consumer-version-number |
25 |
| - Consumer<br>Version |
26 |
| - %span.glyphicon.glyphicon-sort.relationships-sort |
27 |
| - %th.pact{ style: 'width: 40px' } |
28 |
| - %th.provider |
29 |
| - Provider |
30 |
| - %span.glyphicon.glyphicon-sort.relationships-sort |
31 |
| - %th.provider-version-number |
32 |
| - Provider<br>Version |
33 |
| - %span.glyphicon.glyphicon-sort.relationships-sort |
34 |
| - %th |
35 |
| - Published |
36 |
| - %span.glyphicon.glyphicon-sort.relationships-sort |
37 |
| - %th |
38 |
| - Webhook<br>status |
39 |
| - %th |
40 |
| - Last<br>verified |
41 |
| - %span.glyphicon.glyphicon-sort.relationships-sort |
| 21 | + %tr |
| 22 | + %th.consumer |
| 23 | + Consumer |
| 24 | + %span.glyphicon.glyphicon-sort.relationships-sort |
| 25 | + %th.consumer-version-number |
| 26 | + Consumer<br>Version |
| 27 | + %span.glyphicon.glyphicon-sort.relationships-sort |
| 28 | + %th.pact{ style: 'width: 40px' } |
| 29 | + %th.provider |
| 30 | + Provider |
| 31 | + %span.glyphicon.glyphicon-sort.relationships-sort |
| 32 | + %th.provider-version-number |
| 33 | + Provider<br>Version |
| 34 | + %span.glyphicon.glyphicon-sort.relationships-sort |
| 35 | + %th |
| 36 | + Published |
| 37 | + %span.glyphicon.glyphicon-sort.relationships-sort |
| 38 | + %th |
| 39 | + Webhook<br>status |
| 40 | + %th |
| 41 | + Last<br>verified |
| 42 | + %span.glyphicon.glyphicon-sort.relationships-sort |
42 | 43 | %tbody
|
43 | 44 |
|
44 | 45 | - index_items.each do | index_item |
|
|
84 | 85 | %div.relationships-size
|
85 | 86 | = index_items.size_label
|
86 | 87 |
|
87 |
| -:javascript |
88 |
| - $(function(){ |
89 |
| - $("#relationships").tablesorter(); |
90 |
| - }); |
| 88 | + :javascript |
| 89 | + $(function(){ |
| 90 | + $("#relationships").tablesorter(); |
| 91 | + }); |
91 | 92 |
|
92 |
| - $(document).ready(function(){ |
93 |
| - $("span.pact a").load("/images/doc-text.svg"); |
94 |
| - $("span.pact-matrix a").load("/images/doc-matrix.svg"); |
95 |
| - $('td[data-toggle="tooltip"]').each(function(index, td){ |
96 |
| - //appended tooltip div screws up table if it's appended after a |
97 |
| - //td, so need to append it to a div |
98 |
| - $(td).tooltip({container: $(td).first()}); |
| 93 | + $(document).ready(function(){ |
| 94 | + $("span.pact a").load("/images/doc-text.svg"); |
| 95 | + $("span.pact-matrix a").load("/images/doc-matrix.svg"); |
| 96 | + $('td[data-toggle="tooltip"]').each(function(index, td){ |
| 97 | + //appended tooltip div screws up table if it's appended after a |
| 98 | + //td, so need to append it to a div |
| 99 | + $(td).tooltip({container: $(td).first()}); |
| 100 | + }); |
99 | 101 | });
|
100 |
| - }); |
|
0 commit comments