Fix searching for numbers with parens or dashes
Strip some punctuation from search queries // FREEBIE
This commit is contained in:
parent
3d98b54027
commit
65c13adf5e
1 changed files with 1 additions and 0 deletions
|
@ -410,6 +410,7 @@
|
|||
search: function(query) {
|
||||
query = query.trim().toLowerCase();
|
||||
if (query.length > 0) {
|
||||
query = query.replace(/[-.\(\)]*/g,'');
|
||||
var lastCharCode = query.charCodeAt(query.length - 1);
|
||||
var nextChar = String.fromCharCode(lastCharCode + 1);
|
||||
var upper = query.slice(0, -1) + nextChar;
|
||||
|
|
Loading…
Reference in a new issue