Skip to content
Snippets Groups Projects
Commit 8d3c3785 authored by Robin Appelman's avatar Robin Appelman
Browse files

sort music collection

parent f29f601e
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,10 @@ Collection={
}
}
Collection.artists.sort(function(a,b){
return a.name.localeCompare(b.name);
});
Collection.loaded=true;
Collection.loading=false;
for(var i=0;i<Collection.loadedListeners.length;i++){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment