snappymail/dev/Screen/User/About.js

32 lines
499 B
JavaScript
Raw Normal View History

2014-10-18 21:43:44 +08:00
(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 ()
{
2015-11-19 01:32:29 +08:00
require('App/User').default.setWindowTitle('RainLoop');
2014-10-18 21:43:44 +08:00
};
module.exports = AboutUserScreen;
}());