mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-24 22:14:38 +08:00
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
32 lines
No EOL
479 B
JavaScript
32 lines
No EOL
479 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstractScreen = require('Knoin/AbstractScreen')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends AbstractScreen
|
|
*/
|
|
function AboutAppScreen()
|
|
{
|
|
AbstractScreen.call(this, 'about', [
|
|
require('View/App/About')
|
|
]);
|
|
}
|
|
|
|
_.extend(AboutAppScreen.prototype, AbstractScreen.prototype);
|
|
|
|
AboutAppScreen.prototype.onShow = function ()
|
|
{
|
|
require('App/App').setTitle('RainLoop');
|
|
};
|
|
|
|
module.exports = AboutAppScreen;
|
|
|
|
}()); |