mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-09 06:28:28 +03:00
31 lines
No EOL
677 B
JavaScript
31 lines
No EOL
677 B
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
|
'use strict';
|
|
|
|
(function (module) {
|
|
|
|
var
|
|
_ = require('../External/underscore.js'),
|
|
KnoinAbstractScreen = require('../Knoin/KnoinAbstractScreen.js')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends KnoinAbstractScreen
|
|
*/
|
|
function LoginScreen()
|
|
{
|
|
var LoginViewModel = require('../ViewModels/LoginViewModel.js');
|
|
KnoinAbstractScreen.call(this, 'login', [LoginViewModel]);
|
|
}
|
|
|
|
_.extend(LoginScreen.prototype, KnoinAbstractScreen.prototype);
|
|
|
|
LoginScreen.prototype.onShow = function ()
|
|
{
|
|
var RL = require('../Boots/RainLoopApp.js');
|
|
RL.setTitle('');
|
|
};
|
|
|
|
module.exports = LoginScreen;
|
|
|
|
}(module)); |