mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 04:59:21 +03:00
Added individual signatures for every identity.
This commit is contained in:
parent
996703311b
commit
1119022916
45 changed files with 1353 additions and 337 deletions
19
dev/External/ko.js
vendored
19
dev/External/ko.js
vendored
|
|
@ -954,6 +954,25 @@
|
|||
return this;
|
||||
};
|
||||
|
||||
ko.observable.fn.deleteAccessHelper = function ()
|
||||
{
|
||||
this.extend({'falseTimeout': 3000}).extend({'toggleSubscribe': [null,
|
||||
function (oPrev) {
|
||||
if (oPrev && oPrev.deleteAccess)
|
||||
{
|
||||
oPrev.deleteAccess(false);
|
||||
}
|
||||
}, function (oNext) {
|
||||
if (oNext && oNext.deleteAccess)
|
||||
{
|
||||
oNext.deleteAccess(true);
|
||||
}
|
||||
}
|
||||
]});
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
ko.observable.fn.validateFunc = function (fFunc)
|
||||
{
|
||||
var Utils = require('Common/Utils');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue