mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 06:58:27 +03:00
32 lines
No EOL
533 B
JavaScript
32 lines
No EOL
533 B
JavaScript
|
|
(function (module, require) {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
KnoinAbstractScreen = require('Knoin:AbstractScreen')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends KnoinAbstractScreen
|
|
*/
|
|
function AdminLoginScreen()
|
|
{
|
|
KnoinAbstractScreen.call(this, 'login', [
|
|
require('View:Admin:Login')
|
|
]);
|
|
}
|
|
|
|
_.extend(AdminLoginScreen.prototype, KnoinAbstractScreen.prototype);
|
|
|
|
AdminLoginScreen.prototype.onShow = function ()
|
|
{
|
|
require('App:Admin').setTitle('');
|
|
};
|
|
|
|
module.exports = AdminLoginScreen;
|
|
|
|
}(module, require)); |