1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/controller/app/about.js

29 lines
442 B
JavaScript
Raw Normal View History

2014-10-02 16:05:44 -04:00
'use strict';
2014-10-02 16:05:44 -04:00
var cfg = require('../app-config').config;
2014-10-02 16:05:44 -04:00
//
// Controller
//
2014-10-02 16:05:44 -04:00
var AboutCtrl = function($scope) {
2014-10-02 16:05:44 -04:00
$scope.state.about = {
toggle: function(to) {
$scope.state.lightbox = (to) ? 'about' : undefined;
}
};
2014-10-02 16:05:44 -04:00
//
// scope variables
//
2014-11-14 07:19:06 -05:00
$scope.version = cfg.appVersion + ' (beta)';
2014-10-02 16:05:44 -04:00
$scope.date = new Date();
2014-10-02 16:05:44 -04:00
//
// scope functions
//
};
2014-10-08 06:34:34 -04:00
module.exports = AboutCtrl;