Skip to content

Commit

Permalink
Merge pull request #308 from doc75/fix_favorite
Browse files Browse the repository at this point in the history
Fix #305 - Fixing favorites not showing anymore in version 0.1.5
  • Loading branch information
Julien Veyssier authored Feb 22, 2020
2 parents 915a122 + 742e7b6 commit f30134c
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 f30134c

Please sign in to comment.