lib/rubycritic/report_generators/templates/code_index.html.erb in rubycritic-0.0.11 vs lib/rubycritic/report_generators/templates/code_index.html.erb in rubycritic-0.0.12

- old
+ new

@@ -1,15 +1,17 @@ -<table class="code-table"> +<table id="js-code-table" class="analysis-index-table sortable-table"> <thead> <tr> - <th>Name</th> + <th class="first-cell">Name</th> <th>Smells</th> </tr> </thead> <tbody> <% @source_pathnames.each do |pathname| %> <tr> - <td><a href="<%= file_path(pathname) %>"><%= analysed_file_name(pathname) %></a></td> + <td class="first-cell"> + <a href="<%= file_path(pathname) %>"><%= analysed_file_name(pathname) %></a> + </td> <td><%= smells_count(pathname) %></td> </tr> <% end %> </tbody> </table>