Thank you for your donation!


Cloudsmith graciously provides open-source package management and distribution for our project.


Inconsistent Tag View behaviour.
#26
One more change. Use your custom article removing/case insensitive sort for the artist list.

replace
Code:
filteredArtists.sort();

with

Code:
filteredArtists.sort(function(a, b) {
                        a = removeArticles(a).toLowerCase();
                        b = removeArticles(b).toLowerCase();
                        return a > b ? 1 : (a < b ? -1 : 0);
                });
Reply


Messages In This Thread
Inconsistent Tag View behaviour. - by the_bertrum - 06-10-2020, 09:30 AM
RE: Inconsistent Tag View behaviour. - by seashell - 09-14-2020, 06:51 PM

Forum Jump: