Sort nodes on name if set, otherwise ID (fixes #119)

This commit is contained in:
Jakob Borg 2014-04-15 10:57:17 +02:00
parent 7e5b350096
commit 935a8eb9a7

View File

@ -54,11 +54,10 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http) {
}
function nodeCompare(a, b) {
if (a.NodeID === $scope.myID) {
return -1;
}
if (b.NodeID === $scope.myID) {
return 1;
if (typeof a.Name !== 'undefined' && typeof b.Name !== 'undefined') {
if (a.Name < b.Name)
return -1;
return a.Name > b.Name;
}
if (a.NodeID < b.NodeID) {
return -1;