GUAC-897 Using a spinner instead of a distracting modal.

This commit is contained in:
James Muehlner
2014-11-19 23:01:23 -08:00
parent 683fc4475b
commit 41324be7b9
7 changed files with 20 additions and 30 deletions

View File

@@ -40,10 +40,7 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
$scope.recentConnections = [];
// Set status to loading until we have all the connections and groups loaded
$scope.showStatus({
title : 'status.loadingTitle',
text : 'status.loadingText'
});
$scope.loading = true;
/* Fetch all connections and groups, then find which recent connections
* still refer to valid connections and groups.
@@ -83,7 +80,7 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
}
});
$scope.showStatus(false);
$scope.loading = false;
});
/**