blob: 1b7234d1923adf26f3056c7aba4c831c2224832e [file] [log] [blame]
Michael Davis994a93b2017-04-18 10:01:04 -05001/**
Iftekharul Islamcd789502017-04-19 14:37:55 -05002 * Controller for sensors-overview
Michael Davis994a93b2017-04-18 10:01:04 -05003 *
Iftekharul Islamcd789502017-04-19 14:37:55 -05004 * @module app/serverHealth
5 * @exports sensorsOverviewController
6 * @name sensorsOverviewController
Michael Davis994a93b2017-04-18 10:01:04 -05007 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.overview')
Iftekharul Islamcd789502017-04-19 14:37:55 -050015 .controller('sensorsOverviewController', [
Michael Davis994a93b2017-04-18 10:01:04 -050016 '$scope',
17 '$log',
18 '$window',
19 'APIUtils',
20 'dataService',
21 function($scope, $log, $window, APIUtils, dataService, userModel){
22 $scope.dataService = dataService;
23
24 $scope.dropdown_selected = false;
25
Iftekharul Islamcd789502017-04-19 14:37:55 -050026 $scope.$log = $log;
27 $scope.message = 'Hello World!';
Michael Davis994a93b2017-04-18 10:01:04 -050028 }
29 ]
30 );
31
Iftekharul Islamcd789502017-04-19 14:37:55 -050032})(angular);