Fixed incorrect url on bootstrap fonts.

Fixed missing static files in repo
This commit is contained in:
tomtom5152
2015-01-30 13:47:56 +00:00
parent af1396a168
commit c6d89416a1
27 changed files with 12001 additions and 11985 deletions

View File

@@ -0,0 +1,20 @@
(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);