mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Inputosaurus small fixes
This commit is contained in:
parent
c28f82a3b9
commit
93c7e05994
10 changed files with 72 additions and 41 deletions
|
|
@ -153,8 +153,8 @@ function PopupsComposeViewModel()
|
|||
|
||||
}, this);
|
||||
|
||||
this.to.subscribe(function (aValue) {
|
||||
if (this.emptyToError() && 0 < aValue.length)
|
||||
this.to.subscribe(function (sValue) {
|
||||
if (this.emptyToError() && 0 < sValue.length)
|
||||
{
|
||||
this.emptyToError(false);
|
||||
}
|
||||
|
|
@ -217,7 +217,7 @@ function PopupsComposeViewModel()
|
|||
|
||||
this.sendCommand = Utils.createCommand(this, function () {
|
||||
var
|
||||
sTo = this.to(),
|
||||
sTo = Utils.trim(this.to()),
|
||||
sSentFolder = RL.data().sentFolder(),
|
||||
aFlagsCache = []
|
||||
;
|
||||
|
|
@ -557,6 +557,7 @@ PopupsComposeViewModel.prototype.saveMessageResponse = function (sResult, oData)
|
|||
|
||||
PopupsComposeViewModel.prototype.onHide = function ()
|
||||
{
|
||||
this.reset();
|
||||
kn.routeOn();
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue