linagora-rse
Version:
17 lines (12 loc) • 388 B
JavaScript
(function(angular) {
'use strict';
angular.module('esn.datetime')
.controller('esnDatetimeTimeZoneSelectorController', esnDatetimeTimeZoneSelectorController);
function esnDatetimeTimeZoneSelectorController(ESN_DATETIME_TIMEZONE) {
var self = this;
self.$onInit = $onInit;
function $onInit() {
self.timeZones = ESN_DATETIME_TIMEZONE;
}
}
})(angular);