Sat Jul 20 20:40:02 CST 2019 Source Update...

This commit is contained in:
2019-07-20 20:40:02 +08:00
parent 59a5459080
commit 081044155c
12 changed files with 118 additions and 33 deletions

View File

@@ -347,7 +347,7 @@ function SendMoney2()
SendMoney();
};
function SendMoney()
function SendMoney(F)
{
if(!CanSendTransaction)
{
@@ -358,7 +358,9 @@ function SendMoney()
if($("idSendButton").disabled)
return ;
SetVisibleBlock("idBlockOnSend", 0);
CreateTransaction(SendMoneyTR, true, ClearAttach);
if(!F)
F = ClearAttach;
CreateTransaction(SendMoneyTR, true, F);
};
function GetJSONFromTransaction(TR)