You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
682 B
20 lines
682 B
(function ($) {
|
|
function getSubcalls(row) {
|
|
var id = row.attr('id');
|
|
return $('.djDebugProfileRow[id^="'+id+'_"]');
|
|
}
|
|
function getDirectSubcalls(row) {
|
|
var subcalls = getSubcalls(row);
|
|
var depth = parseInt(row.attr('depth'), 10) + 1;
|
|
return subcalls.filter('[depth='+depth+']');
|
|
}
|
|
$('.djDebugProfileRow .djDebugProfileToggle').on('click', function(){
|
|
var row = $(this).closest('.djDebugProfileRow');
|
|
var subcalls = getSubcalls(row);
|
|
if (subcalls.css('display') == 'none') {
|
|
getDirectSubcalls(row).show();
|
|
} else {
|
|
subcalls.hide();
|
|
}
|
|
});
|
|
})(djdt.jQuery);
|
|
|