mail/src/js/controller/app/about.js

24 lines
398 B
JavaScript

'use strict';
var AboutCtrl = function($scope, appConfig) {
//
// scope state
//
$scope.state.about = {
toggle: function(to) {
$scope.state.lightbox = (to) ? 'about' : undefined;
}
};
//
// scope variables
//
$scope.version = appConfig.config.appVersion + ' (beta)';
$scope.date = new Date();
};
module.exports = AboutCtrl;