@@ -6,7 +6,7 @@ function MakeRunsTable(div, url, templatediv, counterdiv){
66
77 // The view describes how to make each row
88 //var template = $.trim($("#"+templatediv).html());
9- var template = "<tr><td style='width:10px'>{{{ link }}}</td><td>{{ number }}</td><td style='width:30px'>{{ date }}</td><td>{{ source }}</td><td>{{ events }}</td><td>{{{ status }}}</td><td style='width:30px'>{{{ tags }}}</td><td style='width:100px'>{{{ top_comment }}}</td></tr>" ;
9+ var template = "<tr><td style='width:10px'>{{{ link }}}</td><td>{{ number }}</td><td style='width:30px'>{{ date }}</td><td>{{ source }}</td><td>{{ mode }}</td><td>{{ events }}</td><td>{{{ status }}}</td><td style='width:30px'>{{{ tags }}}</td><td style='width:100px'>{{{ top_comment }}}</td></tr>" ;
1010 Mustache . parse ( template ) ;
1111 var view = function ( record , index ) {
1212 /*
@@ -64,6 +64,8 @@ function MakeRunsTable(div, url, templatediv, counterdiv){
6464 }
6565 }
6666
67+ var mode = record . reader . ini . name ;
68+
6769 var top_comment = "" ;
6870 if ( "comments" in record && record . comments . length != 0 ) {
6971 top_comment = record . comments [ 0 ] [ 'text' ] ;
@@ -73,8 +75,9 @@ function MakeRunsTable(div, url, templatediv, counterdiv){
7375 // souce events status tags top_comment
7476 return Mustache . render ( template , { link : link , number : number ,
7577 date : datestring , source : source ,
76- events : events , status : status ,
77- tags : tags , top_comment : top_comment } ) ;
78+ mode : mode , events : events ,
79+ status : status , tags : tags ,
80+ top_comment : top_comment } ) ;
7881 } ;
7982
8083 var callbacks = {
0 commit comments