mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
New thread list logic (step 3)
This commit is contained in:
parent
03d26bc4c6
commit
8a4bce3591
7 changed files with 103 additions and 51 deletions
|
|
@ -978,7 +978,7 @@
|
|||
}
|
||||
};
|
||||
|
||||
MessageModel.prototype.storeDataToDom = function ()
|
||||
MessageModel.prototype.storeDataInDom = function ()
|
||||
{
|
||||
if (this.body)
|
||||
{
|
||||
|
|
@ -997,7 +997,7 @@
|
|||
}
|
||||
};
|
||||
|
||||
MessageModel.prototype.storePgpVerifyDataToDom = function ()
|
||||
MessageModel.prototype.storePgpVerifyDataInDom = function ()
|
||||
{
|
||||
if (this.body && require('Stores/User/Pgp').capaOpenPGP())
|
||||
{
|
||||
|
|
@ -1006,7 +1006,7 @@
|
|||
}
|
||||
};
|
||||
|
||||
MessageModel.prototype.fetchDataToDom = function ()
|
||||
MessageModel.prototype.fetchDataFromDom = function ()
|
||||
{
|
||||
if (this.body)
|
||||
{
|
||||
|
|
@ -1090,7 +1090,7 @@
|
|||
}
|
||||
catch (oExc) {}
|
||||
|
||||
this.storePgpVerifyDataToDom();
|
||||
this.storePgpVerifyDataInDom();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -1162,7 +1162,7 @@
|
|||
}
|
||||
catch (oExc) {}
|
||||
|
||||
this.storePgpVerifyDataToDom();
|
||||
this.storePgpVerifyDataInDom();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue