mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 04:04:50 +08:00
25 lines
437 B
JavaScript
25 lines
437 B
JavaScript
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstractScreen = require('Knoin/AbstractScreen');
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractScreen
|
|
*/
|
|
function LoginAdminScreen()
|
|
{
|
|
AbstractScreen.call(this, 'login', [
|
|
require('View/Admin/Login')
|
|
]);
|
|
}
|
|
|
|
_.extend(LoginAdminScreen.prototype, AbstractScreen.prototype);
|
|
|
|
LoginAdminScreen.prototype.onShow = function()
|
|
{
|
|
require('App/Admin').default.setWindowTitle('');
|
|
};
|
|
|
|
module.exports = LoginAdminScreen;
|