Set columns size
authorVincent Tondellier <tonton+hg@team1664.org>
Fri, 08 Aug 2014 23:02:44 +0200
changeset 40 373c7f784bc2
parent 39 009bc678f0ef
child 41 f2292404519a
Set columns size
templates/report/backtrace/frames.html.ep
--- a/templates/report/backtrace/frames.html.ep	Fri Aug 08 00:05:39 2014 +0200
+++ b/templates/report/backtrace/frames.html.ep	Fri Aug 08 23:02:44 2014 +0200
@@ -9,16 +9,16 @@
   %= end
   % $thread->each_frame(sub { my $frame = shift;
   %= t tr => begin
-    %= t td => begin
+    %= t td => (class => 'col-md-1') => begin
       %= $frame->frame_number
     %  end
-    %= t td => begin
+    %= t td => (class => 'col-md-2') => begin
       %= $frame->module_name
     % end
-    %= t td => begin
+    %= t td => (class => 'col-md-5') => begin
       %= $frame->function_name
     % end
-    %= t td => begin
+    %= t td => (class => 'col-md-4') => begin
       %= $frame->file_link
     % end
   % end