File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
debug_toolbar/static/debug_toolbar/js Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 23
23
var $row = $ ( '<tr class="' + ( ( rowCount % 2 ) ? 'djDebugOdd' : 'djDebugEven' ) + '"></tr>' ) ;
24
24
if ( endStat ) {
25
25
// Render a start through end bar
26
- $row . html ( '<td>' + stat . replace ( 'Start' , '' ) + '</td>' +
27
- '<td class="timeline"><div class="djDebugTimeline"><div class="djDebugLineChart"><strong>  ;</strong></div></div></td>' +
26
+ $row . html ( '<td>' + stat . replace ( 'Start' , '' ) + '</td>' +
27
+ '<td class="timeline"><div class="djDebugTimeline"><div class="djDebugLineChart"><strong>  ;</strong></div></div></td>' +
28
28
'<td>' + ( perf . timing [ stat ] - timingOffset ) + ' (+' + ( perf . timing [ endStat ] - perf . timing [ stat ] ) + ')</td>' ) ;
29
29
$row . find ( 'strong' ) . css ( { width : getCSSWidth ( stat , endStat ) } ) ;
30
30
} else {
31
31
// Render a point in time
32
- $row . html ( '<td>' + stat + '</td>' +
33
- '<td class="timeline"><div class="djDebugTimeline"><div class="djDebugLineChart"><strong>  ;</strong></div></div></td>' +
34
- '<td>' + ( perf . timing [ stat ] - timingOffset ) + '</td>' ) ;
35
- $row . find ( 'strong' ) . css ( { width : 2 } ) ;
32
+ $row . html ( '<td>' + stat + '</td>' +
33
+ '<td class="timeline"><div class="djDebugTimeline"><div class="djDebugLineChart"><strong>  ;</strong></div></div></td>' +
34
+ '<td>' + ( perf . timing [ stat ] - timingOffset ) + '</td>' ) ;
35
+ $row . find ( 'strong' ) . css ( { width : 2 } ) ;
36
36
}
37
37
$row . find ( 'djDebugLineChart' ) . css ( { left : getLeft ( stat ) + '%' } ) ;
38
38
$ ( '#djDebugBrowserTimingTableBody' ) . append ( $row ) ;
You can’t perform that action at this time.
0 commit comments