refactoring

This commit is contained in:
cubedro 2015-02-17 22:45:30 +02:00
parent b347f825a4
commit f5005434c6
2 changed files with 3 additions and 8 deletions

View File

@ -52,20 +52,14 @@ function StatsCtrl($scope, $filter, socket, _, toastr) {
case "init":
$scope.nodes = data;
if($scope.nodes.length > 0)
{
toastr['success']("Got nodes list", "Got nodes!");
}
if($scope.nodes.length > 0) toastr['success']("Got nodes list", "Got nodes!");
break;
case "add":
if(addNewNode(data))
{
toastr['success']("New node connected!", "New node!");
} else {
else
toastr['info']("Node reconnected!", "Node is back!");
}
break;
case "update":

View File

@ -32,6 +32,7 @@ app.factory('toastr', function ($rootScope) {
toastr.options = {
"closeButton": false,
"debug": false,
"progressBar": true,
"newestOnTop": true,
"progressBar": false,
"positionClass": "toast-top-right",