lib/templates/flog_page.html.erb in p8-metric_fu-0.8.4.15 vs lib/templates/flog_page.html.erb in p8-metric_fu-0.8.4.16
- old
+ new
@@ -1,16 +1,19 @@
<html>
<head>
<style>
- <%= inline_css("flog.css") %>
+ <%= inline_css("default.css") %>
</style>
</head>
<body>
<p>Score: <%= score %></p>
<% scanned_methods.each do |sm| %>
<p><strong><%= sm.name %> (<%= sm.score %>)</strong></p>
<table>
- <tr><th>Score</th><th>Operator</th></tr>
+ <tr>
+ <th>Score</th>
+ <th>Operator</th>
+ </tr>
<% sm.operators.each_with_index do |operator, count| %>
<tr class='<%= cycle("light", "dark", count) %>'>
<td class='score'><%= sprintf(SCORE_FORMAT, operator.score) %></td>
<td class='score'><%= operator.operator %></td>
</tr>
\ No newline at end of file