make sure we deal with lowercase string in all situations

This commit is contained in:
Mario Vavti 2018-01-21 10:27:50 +01:00
parent 9937fea2e7
commit 1709dbd376

View File

@ -893,14 +893,14 @@ function notify_popup_loader(notifyType) {
if($('#tt-' + notifyType + '-only').hasClass('active')) if($('#tt-' + notifyType + '-only').hasClass('active'))
$('#nav-' + notifyType + '-menu [data-thread_top=false]').hide(); $('#nav-' + notifyType + '-menu [data-thread_top=false]').hide();
var filter = $('#cn-' + notifyType + '-input').val(); var filter = $('#cn-' + notifyType + '-input').val().toString().toLowerCase();
if(filter) { if(filter) {
$('#nav-' + notifyType + '-menu .notification').each(function(i, el){ $('#nav-' + notifyType + '-menu .notification').each(function(i, el){
var cn = $(el).data('contact_name').toString().toLowerCase(); var cn = $(el).data('contact_name').toString().toLowerCase();
if(cn.indexOf(filter) === -1) if(cn.indexOf(filter) === -1)
$(this).addClass('d-none'); $(el).addClass('d-none');
else else
$(this).removeClass('d-none'); $(el).removeClass('d-none');
}); });
} }
}); });