blob: 75662cc1cd9f5e0df4cd954ca74d96ec99af3105 [file] [log] [blame]
/**
* Controller for date-time
*
* @module app/configuration
* @exports dateTimeController
* @name dateTimeController
* @version 0.1.0
*/
window.angular && (function (angular) {
'use strict';
angular
.module('app.configuration')
.controller('dateTimeController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
}
]
);
})(angular);