Sort the subscription member lists

(imported from commit 54457c2cbe971cd8f29f0d682890c18f9ca05bd5)
This commit is contained in:
Zev Benjamin 2013-01-14 15:21:15 -05:00
parent 1d4a34aeba
commit 17e92ebe13
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ $(function () {
dataType: 'json', // This seems to be ignored. We still get back an xhr.
data: {stream: stream},
success: function (data) {
$.each(data.subscribers, function (idx, elem) {
$.each(data.subscribers.sort(), function (idx, elem) {
list.append('<li>' + elem);
});
},