mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
Code refactoring
This commit is contained in:
parent
36329110e5
commit
b4f416b6f8
105 changed files with 4331 additions and 4339 deletions
32
dev/Screens/AboutScreen.js
Normal file
32
dev/Screens/AboutScreen.js
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||||
|
||||
(function (module, require) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var
|
||||
_ = require('_'),
|
||||
KnoinAbstractScreen = require('Knoin:AbstractScreen')
|
||||
;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends KnoinAbstractScreen
|
||||
*/
|
||||
function AboutScreen()
|
||||
{
|
||||
KnoinAbstractScreen.call(this, 'about', [
|
||||
require('View:RainLoop:About')
|
||||
]);
|
||||
}
|
||||
|
||||
_.extend(AboutScreen.prototype, KnoinAbstractScreen.prototype);
|
||||
|
||||
AboutScreen.prototype.onShow = function ()
|
||||
{
|
||||
require('App:RainLoop').setTitle('RainLoop');
|
||||
};
|
||||
|
||||
module.exports = AboutScreen;
|
||||
|
||||
}(module, require));
|
||||
Loading…
Add table
Add a link
Reference in a new issue