Clarify status badges and fix column widths (fixes #53)

This commit is contained in:
Jakob Borg
2014-02-05 22:42:23 +01:00
parent 1aefc50e35
commit ea41acfff5
2 changed files with 25 additions and 9 deletions

View File

@@ -118,6 +118,22 @@ syncthing.controller('SyncthingCtrl', function ($scope, $http) {
return "minus";
};
$scope.nodeStatus = function (nodeCfg) {
if ($scope.connections[nodeCfg.NodeID]) {
return "Connected";
}
return "Disconnected";
};
$scope.nodeIcon = function (nodeCfg) {
if ($scope.connections[nodeCfg.NodeID]) {
return "ok";
}
return "minus";
};
$scope.nodeClass = function (nodeCfg) {
var conn = $scope.connections[nodeCfg.NodeID];
if (conn) {