mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Code refactoring
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
This commit is contained in:
parent
7a374ebe03
commit
06274c6a7c
112 changed files with 2667 additions and 1862 deletions
32
dev/Screen/App/About.js
Normal file
32
dev/Screen/App/About.js
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
(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;
|
||||
|
||||
}());
|
||||
Loading…
Add table
Add a link
Reference in a new issue