mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
OpenPGP (Compose) (#53) UNSTABLE
This commit is contained in:
parent
b330f77bc0
commit
1c4ce1dfb2
14 changed files with 631 additions and 321 deletions
|
|
@ -6,18 +6,8 @@
|
|||
function SettingsOpenPGP()
|
||||
{
|
||||
this.openpgpkeys = RL.data().openpgpkeys;
|
||||
|
||||
this.openpgpkeysPublic = ko.computed(function () {
|
||||
return _.filter(this.openpgpkeys(), function (oItem) {
|
||||
return !!(oItem && !oItem.isPrivate);
|
||||
});
|
||||
}, this);
|
||||
|
||||
this.openpgpkeysPrivate = ko.computed(function () {
|
||||
return _.filter(this.openpgpkeys(), function (oItem) {
|
||||
return !!(oItem && oItem.isPrivate);
|
||||
});
|
||||
}, this);
|
||||
this.openpgpkeysPublic = RL.data().openpgpkeysPublic;
|
||||
this.openpgpkeysPrivate = RL.data().openpgpkeysPrivate;
|
||||
|
||||
this.openPgpKeyForDeletion = ko.observable(null).extend({'falseTimeout': 3000}).extend({'toggleSubscribe': [this,
|
||||
function (oPrev) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue