blob: 5fca94f279d30bf154923480150c5b54c9771a64 [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);