istic-openstack/client/js/controllers/home/main.js
2016-02-24 14:39:47 +01:00

16 lines
302 B
JavaScript

/**
* The home controller
*
* @param {$scope} $scope The $scope service from angular
*/
mainApp.controller('homeCtrl', [ '$scope', 'Compute', function ($scope, Compute)
{
var updatePage=function(){
// TODO Update graph etc...
}
// Retrieve all Data
Compute.pullData(updatePage);
}]);