1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/controller/about.js
2014-11-14 13:19:06 +01:00

29 lines
442 B
JavaScript

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