blob: 59d3488c1e60c53e506d4ac6502dab92f33d7dca [file] [log] [blame]
/**
* Controller for index
*
* @module app/multi-server
* @exports indexController
* @name indexController
* @version 0.1.0
*/
window.angular && (function (angular) {
'use strict';
angular
.module('app.overview')
.controller('indexController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
$scope.loading = false;
}
]
);
})(angular);