1
0
Fork 0

Sorted list from fishbowl

This commit is contained in:
Michael Hackstein 2014-12-13 13:12:45 +01:00
parent 303e4e6d94
commit 38564a1709
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@
var listTempl = this.appStoreTemplate;
$.get("foxxes/fishbowl", function(list) {
var table = $("#appstore-content");
_.each(list, function(app) {
_.each(_.sortBy(list, "name"), function(app) {
table.append(listTempl.render(app));
});
});