* [uitest] add ui test coverage report page.
This commit is contained in:
@@ -117,3 +117,20 @@ function renderColorByCoveragePercent()
|
||||
{
|
||||
$(this).css('color', 'orange');
|
||||
}
|
||||
else
|
||||
{
|
||||
$(this).css('color', 'green');
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function implementExpand()
|
||||
{
|
||||
$("tr[name$='-child']").hide();
|
||||
$("tr[name$='-parent']").click(function()
|
||||
{
|
||||
$(this).nextUntil("tr[name$='-parent']").slideToggle('fast');
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user