snappymail/dev/Screen/Admin/Login.js
2015-03-04 04:30:37 +04:00

32 lines
No EOL
489 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').setWindowTitle('');
};
module.exports = LoginAdminScreen;
}());