mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 06:29:17 +03:00
* Clean up the presentation of the log file a bit.
svn path=/nixos/trunk/; revision=25493
This commit is contained in:
parent
60b6eb7579
commit
0b33ba7e53
3 changed files with 36 additions and 4 deletions
|
@ -23,7 +23,7 @@ $(document).ready(function() {
|
|||
|
||||
/* Implementation of the expand all link. */
|
||||
$(".logTreeExpandAll").click(function() {
|
||||
$(".logTreeToggle", $(this).siblings(".toplevel")).map(function() {
|
||||
$(".logTreeToggle", $(this).parent().siblings(".toplevel")).map(function() {
|
||||
$(this).siblings("ul").show();
|
||||
$(this).text("-");
|
||||
});
|
||||
|
@ -31,7 +31,7 @@ $(document).ready(function() {
|
|||
|
||||
/* Implementation of the collapse all link. */
|
||||
$(".logTreeCollapseAll").click(function() {
|
||||
$(".logTreeToggle", $(this).siblings(".toplevel")).map(function() {
|
||||
$(".logTreeToggle", $(this).parent().siblings(".toplevel")).map(function() {
|
||||
$(this).siblings("ul").hide();
|
||||
$(this).text("+");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue