mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 14:07:04 +03:00
Login screen new interface (social buttons)
This commit is contained in:
parent
28a684b7c8
commit
77a30c0b92
40 changed files with 622 additions and 630 deletions
|
|
@ -17,7 +17,7 @@
|
|||
/**
|
||||
* @constructor
|
||||
*/
|
||||
function OpenPgpUserSetting()
|
||||
function OpenPgpUserSettings()
|
||||
{
|
||||
this.openpgpkeys = Data.openpgpkeys;
|
||||
this.openpgpkeysPublic = Data.openpgpkeysPublic;
|
||||
|
|
@ -38,17 +38,17 @@
|
|||
]});
|
||||
}
|
||||
|
||||
OpenPgpUserSetting.prototype.addOpenPgpKey = function ()
|
||||
OpenPgpUserSettings.prototype.addOpenPgpKey = function ()
|
||||
{
|
||||
kn.showScreenPopup(require('View/Popup/AddOpenPgpKey'));
|
||||
};
|
||||
|
||||
OpenPgpUserSetting.prototype.generateOpenPgpKey = function ()
|
||||
OpenPgpUserSettings.prototype.generateOpenPgpKey = function ()
|
||||
{
|
||||
kn.showScreenPopup(require('View/Popup/NewOpenPgpKey'));
|
||||
};
|
||||
|
||||
OpenPgpUserSetting.prototype.viewOpenPgpKey = function (oOpenPgpKey)
|
||||
OpenPgpUserSettings.prototype.viewOpenPgpKey = function (oOpenPgpKey)
|
||||
{
|
||||
if (oOpenPgpKey)
|
||||
{
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
/**
|
||||
* @param {OpenPgpKeyModel} oOpenPgpKeyToRemove
|
||||
*/
|
||||
OpenPgpUserSetting.prototype.deleteOpenPgpKey = function (oOpenPgpKeyToRemove)
|
||||
OpenPgpUserSettings.prototype.deleteOpenPgpKey = function (oOpenPgpKeyToRemove)
|
||||
{
|
||||
if (oOpenPgpKeyToRemove && oOpenPgpKeyToRemove.deleteAccess())
|
||||
{
|
||||
|
|
@ -87,6 +87,6 @@
|
|||
}
|
||||
};
|
||||
|
||||
module.exports = OpenPgpUserSetting;
|
||||
module.exports = OpenPgpUserSettings;
|
||||
|
||||
}());
|
||||
Loading…
Add table
Add a link
Reference in a new issue