mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
32 lines
No EOL
491 B
JavaScript
32 lines
No EOL
491 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').setWindowTitle('RainLoop');
|
|
};
|
|
|
|
module.exports = AboutUserScreen;
|
|
|
|
}()); |