mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
32 lines
527 B
JavaScript
32 lines
527 B
JavaScript
|
|
(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)); |