blob: c59f4117f486457892ec10eff05aebb7c0be927f [file] [log] [blame]
Iftekharul Islam99d199f2017-03-24 15:28:25 -05001/**
2 * Controller for unit Id
3 *
4 * @module app/overview
5 * @exports unitIdController
6 * @name unitIdController
7 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.overview')
15 .controller('unitIdController', [
16 '$scope',
17 '$window',
18 'APIUtils',
19 'dataService',
20 function($scope, $window, APIUtils, dataService, userModel){
21 $scope.dataService = dataService;
22 }
23 ]
24 );
25
26})(angular);