blob: 4992b1eb7d33c74c7b765269eeaa4bc6d16d0cf3 [file] [log] [blame]
Iftekharul Islam99d199f2017-03-24 15:28:25 -05001/**
Iftekharul Islamcd789502017-04-19 14:37:55 -05002 * Controller for systemOverview
Iftekharul Islam99d199f2017-03-24 15:28:25 -05003 *
4 * @module app/overview
5 * @exports systemOverviewController
6 * @name systemOverviewController
7 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.overview')
15 .controller('systemOverviewController', [
16 '$scope',
17 '$window',
18 'APIUtils',
19 'dataService',
20 function($scope, $window, APIUtils, dataService, userModel){
21 $scope.dataService = dataService;
Iftekharul Islamcd789502017-04-19 14:37:55 -050022
23 $scope.dropdown_selected = false;
Iftekharul Islam99d199f2017-03-24 15:28:25 -050024 }
25 ]
26 );
27
Iftekharul Islamcd789502017-04-19 14:37:55 -050028})(angular);