Fix searching for numbers with parens or dashes

Strip some punctuation from search queries

// FREEBIE
pull/749/head
lilia 9 years ago
parent 3d98b54027
commit 65c13adf5e

@ -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…
Cancel
Save