New thread list logic (step 3)

This commit is contained in:
RainLoop Team 2015-04-22 01:01:29 +04:00
parent 03d26bc4c6
commit 8a4bce3591
7 changed files with 103 additions and 51 deletions

View file

@ -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();
}
};