mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 14:37:02 +03:00
CommonJS (research)
This commit is contained in:
parent
2fa2cd191e
commit
56607de87c
91 changed files with 20220 additions and 12933 deletions
|
|
@ -1,17 +1,31 @@
|
|||
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends KnoinAbstractScreen
|
||||
*/
|
||||
function AdminLoginScreen()
|
||||
{
|
||||
KnoinAbstractScreen.call(this, 'login', [AdminLoginViewModel]);
|
||||
}
|
||||
(function (module) {
|
||||
|
||||
_.extend(AdminLoginScreen.prototype, KnoinAbstractScreen.prototype);
|
||||
'use strict';
|
||||
|
||||
AdminLoginScreen.prototype.onShow = function ()
|
||||
{
|
||||
RL.setTitle('');
|
||||
};
|
||||
var
|
||||
_ = require('./External/underscore.js'),
|
||||
KnoinAbstractScreen = require('./Knoin/KnoinAbstractScreen.js'),
|
||||
AdminLoginViewModel = require('./ViewModels/AdminLoginViewModel.js')
|
||||
;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends KnoinAbstractScreen
|
||||
*/
|
||||
function AdminLoginScreen()
|
||||
{
|
||||
KnoinAbstractScreen.call(this, 'login', [AdminLoginViewModel]);
|
||||
}
|
||||
|
||||
_.extend(AdminLoginScreen.prototype, KnoinAbstractScreen.prototype);
|
||||
|
||||
AdminLoginScreen.prototype.onShow = function ()
|
||||
{
|
||||
RL.setTitle(''); // TODO cjs
|
||||
};
|
||||
|
||||
module.exports = AdminLoginScreen;
|
||||
|
||||
}(module));
|
||||
Loading…
Add table
Add a link
Reference in a new issue