Search bar fixes for #1187 and #1205 (#1207)

This commit is contained in:
Patrick G 2017-03-11 08:45:15 +00:00 committed by Lunny Xiao
parent e2b2fd6e78
commit 64214a9426
1 changed files with 3 additions and 5 deletions

View File

@ -1523,11 +1523,9 @@ $(function () {
$("#search_repo").on('change paste keyup',function(){ $("#search_repo").on('change paste keyup',function(){
var value = $(this).val(); var value = $(this).val();
if(!value){ $.map($('.search-list li'), function(i) {
$('.list-search-style').html(''); $(i).css("display", (value.trim().length == 0 || $(i).attr("data-title").trim().toLowerCase().indexOf(value.trim().toLowerCase()) > -1) ? "" : "none");
} else{ });
$('.list-search-style').html('.search-list li:not([data-title*="' + value + '"]) {display: none;}');
}
}); });
// Parse SSH Key // Parse SSH Key