bug #3449659 [navi] Fast filter broken with table tree

This commit is contained in:
dimka
2011-12-07 16:13:16 +05:30
committed by Madhura Jayaratne
parent 6e0a10494f
commit 3713680c37
2 changed files with 2 additions and 1 deletions

View File

@@ -152,7 +152,7 @@ function fast_filter(value){
if (value && $elem.html().toLowerCase().indexOf(lowercase_value) == -1) {
$elem.parent().hide();
} else {
$elem.parent().show();
$elem.parents('li').show();
}
});
}