Commit 81c31c61 authored by xaver's avatar xaver
Browse files

autocomplte fix and empty is still where

parent 7dc6037b
......@@ -97,7 +97,7 @@
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
response( select.children( "option" ).map(function() {
var text = $( this ).text();
//if ( this.value && ( !request.term || matcher.test(text) ) )
if (( !request.term || matcher.test(text) ) )
return {
label: text.replace(
new RegExp(
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment