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