Skip to content

Commit

Permalink
tag 4.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brainexe committed Aug 29, 2024
1 parent 501d51a commit cda4de3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions serveradmin/servershell/static/js/inspect.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
let hide_empty = function(element) {
let button = $(element);

if (button.attr('aria-pressed') === 'true') {
$('tbody tr').show();
}
else {
$('tbody tr').hide();
$('tbody td.diff').parent('tr').show();
}
};

0 comments on commit cda4de3

Please sign in to comment.