Commit 1e6370357e7f3f4ae7781c9a22080d6f3cb01e5f
Exists in
master
and in
1 other branch
Merge pull request #230 from martinciu/head-and-tail
back to ruby 1.8 hash style
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
app/views/errs/_tally_table.html.haml
... | ... | @@ -8,9 +8,9 @@ |
8 | 8 | - if rows.size > head_size |
9 | 9 | %tfoot |
10 | 10 | %tr |
11 | - %td{colspan: 2} | |
12 | - = link_to 'Show more...', '#', class: :show_tail | |
13 | - %table.tally.tail{style: "display: none"} | |
11 | + %td{:colspan => 2} | |
12 | + = link_to 'Show more...', '#', :class => :show_tail | |
13 | + %table.tally.tail{:style => "display: none"} | |
14 | 14 | %tbody |
15 | 15 | - tail(rows).each do |row| |
16 | 16 | %tr | ... | ... |