mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 18:41:34 +08:00
32 lines
No EOL
601 B
JavaScript
32 lines
No EOL
601 B
JavaScript
/* 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)); |