mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 04:04:50 +08:00
17 lines
No EOL
349 B
JavaScript
17 lines
No EOL
349 B
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends KnoinAbstractScreen
|
|
*/
|
|
function LoginScreen()
|
|
{
|
|
KnoinAbstractScreen.call(this, 'login', [LoginViewModel]);
|
|
}
|
|
|
|
_.extend(LoginScreen.prototype, KnoinAbstractScreen.prototype);
|
|
|
|
LoginScreen.prototype.onShow = function ()
|
|
{
|
|
RL.setTitle('');
|
|
}; |