* Remove the count when search the object.

This commit is contained in:
hufangzhou
2021-09-06 10:00:57 +08:00
parent e3af8d6d5e
commit 0df4895cee
3 changed files with 21 additions and 12 deletions
@@ -29,8 +29,6 @@ a.executionName:focus, a.executionName:hover {background: #0c64eb; color: #fff !
#swapper li > a {padding-top: 4px; padding-bottom: 4px;}
#swapper li {padding-top: 0; padding-bottom: 0;}
#swapper .tree li>.list-toggle {top: -1px;}
.col-right {padding-top: 30px;}
</style>
<?php
$executionCounts = array();
@@ -147,8 +145,11 @@ $(function()
$('.nav-tabs>li a').click(function()
{
$(this).siblings().show();
$(this).parent().siblings('li').find('span').hide();
if($('#swapper input[type="search"]').val() == '')
{
$(this).siblings().show();
$(this).parent().siblings('li').find('span').hide();
}
})
$('#swapper [data-ride="tree"]').tree('expand');
@@ -158,11 +159,13 @@ $(function()
if(value != '')
{
$('div.hide-in-search').siblings('i').addClass('hide-in-search');
$('.nav-tabs li span').hide();
}
else
{
$('div.hide-in-search').siblings('i').removeClass('hide-in-search');
$('li.has-list div.hide-in-search').removeClass('hidden');
$('.nav-tabs li.active').find('span').show();
}
})
})