Fixed: Series search won't break when term contains brackets
Fixed: Attempting to apply the activity spinner incorrectly
This commit is contained in:
Mark McDowall 2014-11-05 07:15:29 -08:00
parent 4bcab7ae9a
commit 3411c4e5a7
2 changed files with 5 additions and 4 deletions

View File

@ -34,11 +34,8 @@ define(
var substringMatcher = function() {
return function findMatches(q, cb) {
// regex used to determine if a string contains the substring `q`
var substrRegex = new RegExp(q, 'i');
var matches = _.select(SeriesCollection.toJSON(), function (series) {
return substrRegex.test(series.title);
return series.title.toLowerCase().indexOf(q.toLowerCase()) > -1;
});
cb(matches);

View File

@ -21,6 +21,10 @@ define(
var icon = this.find('i').andSelf('i');
if (!icon || !icon.attr('class')) {
return this;
}
var iconClasses = icon.attr('class').match(/(?:^|\s)icon\-.+?(?:$|\s)/);
if (iconClasses.length === 0) {