How do you disable the "No matches found" text on autocomplete on select2/Tagging Support?
This is what I have now:
$('#ProductDescriptions_30_keywords').select2({
tags:[],
tokenSeparators: [",", " "],
minimumResultsForSearch: -1
}
);
But it still shows the "No matches found" message in autocomplete window. I would like to remove this.