1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-10 11:15:01 -05:00
mail/src/js/controller/app/about.js

23 lines
401 B
JavaScript
Raw Normal View History

2014-10-02 16:05:44 -04:00
'use strict';
var AboutCtrl = function($scope, appConfig) {
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
//
$scope.version = appConfig.config.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;