Index: branches/5.2.x/core/kernel/utility/debugger/debugger.js =================================================================== diff -u -N -r13840 -r14095 --- branches/5.2.x/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 13840) +++ branches/5.2.x/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 14095) @@ -286,6 +286,16 @@ p_object.AppendRow(contents[$i]); } + if ( p_object.jQueryFound() ) { + var $stats_table = $('.dbg_stats_table:first').clone(); + var $statistics_html = $( $('
').html($stats_table) ).html(); + + if ($statistics_html) { + $('.dbg_stats_table:first').remove(); + p_object.AppendRow($statistics_html); + } + } + p_object.Refresh(); }