mail/src/js/controller/about.js

29 lines
430 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-10-02 16:05:44 -04:00
$scope.version = cfg.appVersion;
$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;