mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 19:54:43 +08:00
32 lines
No EOL
485 B
JavaScript
32 lines
No EOL
485 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstractScreen = require('Knoin/AbstractScreen')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractScreen
|
|
*/
|
|
function AboutUserScreen()
|
|
{
|
|
AbstractScreen.call(this, 'about', [
|
|
require('View/User/About')
|
|
]);
|
|
}
|
|
|
|
_.extend(AboutUserScreen.prototype, AbstractScreen.prototype);
|
|
|
|
AboutUserScreen.prototype.onShow = function ()
|
|
{
|
|
require('App/User').setTitle('RainLoop');
|
|
};
|
|
|
|
module.exports = AboutUserScreen;
|
|
|
|
}()); |