Revision 737e4d8a
Added by Jérôme Schneider over 12 years ago
calebasse/static/js/calebasse.agenda.js | ||
---|---|---|
90 | 90 |
var filtre = $(this).val(); |
91 | 91 |
if (filtre) { |
92 | 92 |
$('#users li').each(function() { |
93 |
if ($(this).text().match(filtre)) {
|
|
93 |
if ($(this).text().match(new RegExp(filtre, "i"))) {
|
|
94 | 94 |
$(this).show(); |
95 | 95 |
} else { |
96 | 96 |
$(this).hide(); |
Also available in: Unified diff
Fix #1830: agenda search worker is now case insensitive