blob: 5ec89ef2a11a65f835a542cac577756c461bb60f [file] [log] [blame]
/**
* Controller for date-time
*
* @module app/configuration
* @exports dateTimeController
* @name dateTimeController
*/
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);