Sha256: abbed93d23543100e57ac246e0f632b43ede279049d1f351377699dc0b99990f
Contents?: true
Size: 752 Bytes
Versions: 51
Compression:
Stored size: 752 Bytes
Contents
<div onClick="toggle('errors_table');"> <h2>Exceptions raised during the analysis (click to see them)</h2 ></div> <div> <div id='errors_table' style='display:none'> <table> <tr> <th>Error</th> <th>Location</th> </tr> <% tracker.errors.each do |warning| %> <tr> <td><%= CGI.escapeHTML warning[:error] %></td> <td> <% if tracker.options[:debug] %> <% warning[:backtrace].each do |line| %> <%= line %><br/> <% end %> <% else %> <%= warning[:backtrace][0] %> <% end %> </td> </tr> <% end %> </table> </div> </div>
Version data entries
51 entries across 51 versions & 2 rubygems