blob: c59f4117f486457892ec10eff05aebb7c0be927f [file] [log] [blame]
/**
* Controller for unit Id
*
* @module app/overview
* @exports unitIdController
* @name unitIdController
* @version 0.1.0
*/
window.angular && (function (angular) {
'use strict';
angular
.module('app.overview')
.controller('unitIdController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService, userModel){
$scope.dataService = dataService;
}
]
);
})(angular);