mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 04:04:50 +08:00
17 lines
373 B
JavaScript
17 lines
373 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(Utils.i18n('TITLES/LOGIN'));
|
||
|
};
|