snappymail/dev/Screen/Admin/Login.js
2016-06-27 23:55:37 +03:00

32 lines
498 B
JavaScript

(function () {
'use strict';
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;
}());