GUAC-932: Restore recent connections through new guacRecentConnections directive.

This commit is contained in:
Michael Jumper
2014-12-18 03:34:51 -08:00
parent f35cd1fdd1
commit b4ab50910a
6 changed files with 219 additions and 20 deletions

View File

@@ -30,11 +30,7 @@ angular.module('home').controller('homeController', ['$scope', '$injector',
var ConnectionGroup = $injector.get("ConnectionGroup");
// Get required services
var connectionGroupService = $injector.get("connectionGroupService"),
guacHistory = $injector.get("guacHistory");
// All valid recent connections
$scope.recentConnections = [];
var connectionGroupService = $injector.get("connectionGroupService");
// Set status to loading until we have all the connections and groups loaded
$scope.loading = true;