blob: 17c9057b54e92e566a3db4e6005966e8e145e203 [file] [log] [blame]
/**
* Controller for server
*
* @module app/serverHealth
* @exports inventoryController
* @name inventoryController
*/
window.angular && (function(angular) {
'use strict';
angular
.module('app.serverHealth')
.controller('inventoryController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService) {
$scope.dataService = dataService;
// Force to top of page when viewing single group
$window.scrollTo(0, 0);
}
]);
})(angular);