Fix searching for numbers with parens or dashes

Strip some punctuation from search queries

// FREEBIE
This commit is contained in:
lilia 2015-12-04 18:00:12 -08:00
parent 3d98b54027
commit 65c13adf5e

View file

@ -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;