Skip to content
Extraits de code Groupes Projets
Valider d6a8c7fc rédigé par renato's avatar renato
Parcourir les fichiers

surligner meme si l'option min_length est null

parent f56ce28b
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -149,7 +149,7 @@
buildReplaceTools : function(query) {
var re = [], regex;
$.each(query,function(i,n){
if(SearchHighlight.options.min_length && n.length>=SearchHighlight.options.min_length)
if(!SearchHighlight.options.min_length || n.length>=SearchHighlight.options.min_length)
if(n = SearchHighlight.replaceAccent(n).replace(SearchHighlight.escapeRegEx,"$1\\$2"))
re.push(n);
});
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter