Skip to content

Commit

Permalink
Fix #305 - Fixing favorites not showing anymore in version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
doc75 committed Feb 21, 2020
1 parent 658f4f3 commit 4240980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/favoritesController.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ FavoritesController.prototype = {
var beforeThis = null;
var rawLower = rawName.toLowerCase();
$('#category-list > li').each(function() {
catName = $(this).attr('category');
var catName = $(this).attr('category');
if (rawLower.localeCompare(catName) < 0) {
beforeThis = $(this);
return false;
Expand Down

0 comments on commit 4240980

Please sign in to comment.