mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Removed User About Screen, it is unused
This commit is contained in:
parent
e3e5929b21
commit
496c8f59ae
4 changed files with 0 additions and 44 deletions
|
|
@ -68,7 +68,6 @@ import { IdentityModel } from 'Model/Identity';
|
||||||
import { TemplateModel } from 'Model/Template';
|
import { TemplateModel } from 'Model/Template';
|
||||||
import { OpenPgpKeyModel } from 'Model/OpenPgpKey';
|
import { OpenPgpKeyModel } from 'Model/OpenPgpKey';
|
||||||
|
|
||||||
// import {AboutUserScreen} from 'Screen/User/About';
|
|
||||||
import { LoginUserScreen } from 'Screen/User/Login';
|
import { LoginUserScreen } from 'Screen/User/Login';
|
||||||
import { MailBoxUserScreen } from 'Screen/User/MailBox';
|
import { MailBoxUserScreen } from 'Screen/User/MailBox';
|
||||||
import { SettingsUserScreen } from 'Screen/User/Settings';
|
import { SettingsUserScreen } from 'Screen/User/Settings';
|
||||||
|
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
import { AbstractScreen } from 'Knoin/AbstractScreen';
|
|
||||||
|
|
||||||
import { AboutUserView } from 'View/User/About';
|
|
||||||
|
|
||||||
import { getApp } from 'Helper/Apps/User';
|
|
||||||
|
|
||||||
class AboutUserScreen extends AbstractScreen {
|
|
||||||
constructor() {
|
|
||||||
super('about', [AboutUserView]);
|
|
||||||
}
|
|
||||||
|
|
||||||
onShow() {
|
|
||||||
getApp().setWindowTitle('RainLoop');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { AboutUserScreen, AboutUserScreen as default };
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
import ko from 'ko';
|
|
||||||
|
|
||||||
import * as Settings from 'Storage/Settings';
|
|
||||||
|
|
||||||
import { view, ViewType } from 'Knoin/Knoin';
|
|
||||||
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
|
|
||||||
|
|
||||||
@view({
|
|
||||||
name: 'View/User/About',
|
|
||||||
type: ViewType.Center,
|
|
||||||
templateID: 'About'
|
|
||||||
})
|
|
||||||
class AboutUserView extends AbstractViewNext {
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
this.version = ko.observable(Settings.appSettingsGet('version'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { AboutUserView, AboutUserView as default };
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
<div style="margin: 30px">
|
|
||||||
<h1 style="display: inline; color: #fff; text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);">RainLoop Webmail</h1>
|
|
||||||
|
|
||||||
<h3 style="display: inline; color: #fff; text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);">(<span data-bind="text: version"></span>)</h3>
|
|
||||||
<h3><a href="http://rainloop.net/" target="_blank">http://rainloop.net</a></h3>
|
|
||||||
</div>
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue