Sun Jul 21 15:45:52 CST 2019 Source Update...
This commit is contained in:
parent
081044155c
commit
8e1a78e586
@ -428,7 +428,8 @@ textarea {
|
||||
|
||||
.key-field__input {
|
||||
width: 100%;
|
||||
padding: 15px 15px 13px 14px;
|
||||
/*padding: 15px 15px 13px 14px;*/
|
||||
padding: 8px 15px 8px 14px;
|
||||
margin: 10px 0 0;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
font-family: inherit;
|
||||
@ -442,8 +443,10 @@ textarea {
|
||||
line-height: 21px;
|
||||
}
|
||||
.key-field__input--enter {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 18px;
|
||||
/*padding-top: 20px;*/
|
||||
/*padding-bottom: 18px;*/
|
||||
padding-top: 10px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.key-field__btn {
|
||||
@ -488,7 +491,8 @@ textarea {
|
||||
.key-field__select {
|
||||
width: 100%;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding: 12px 15px;
|
||||
/*padding: 12px 15px;*/
|
||||
padding: 8px 8px;
|
||||
margin-top: 5px;
|
||||
background: #fff;
|
||||
font-family: inherit;
|
||||
@ -2773,7 +2777,7 @@ iframe
|
||||
.btn--float
|
||||
{
|
||||
float: left;
|
||||
width: 200px;
|
||||
width: 220px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
|
@ -100,13 +100,18 @@ function DrawDiagram(Item)
|
||||
var arr = Item.arr;
|
||||
if(!arr)
|
||||
arr = Item.ArrList;
|
||||
var arrX = Item.arrX;
|
||||
var GreenValue = Item.value;
|
||||
var StepTime = Item.steptime;
|
||||
var StartNumber = Item.startnumber;
|
||||
var StartServer = Item.starttime;
|
||||
var mouseX = Item.mouseX;
|
||||
var KPrecision = Item.KPrecision;
|
||||
var CountNameX = Item.CountNameX;
|
||||
if(!CountNameX)
|
||||
CountNameX = 10;
|
||||
var arrX = Item.arrX;
|
||||
if(arrX && arrX.length)
|
||||
CountNameX = arrX.length;
|
||||
if(!KPrecision)
|
||||
KPrecision = 1;
|
||||
if(!arr)
|
||||
@ -122,6 +127,18 @@ function DrawDiagram(Item)
|
||||
else
|
||||
ctx.fillStyle = "#FFF";
|
||||
ctx.fillRect(0, 0, obj.width, obj.height);
|
||||
var MaxWidth = obj.width - Left - Right;
|
||||
if(arr.length > MaxWidth)
|
||||
{
|
||||
var K = arr.length / MaxWidth;
|
||||
var arr2 = [];
|
||||
for(var i = 0; i < MaxWidth; i++)
|
||||
{
|
||||
var i2 = Math.floor(i * K);
|
||||
arr2[i] = arr[i2];
|
||||
}
|
||||
arr = arr2;
|
||||
}
|
||||
if(arr.length <= 0)
|
||||
return ;
|
||||
var Pow2 = 0;
|
||||
@ -156,7 +173,7 @@ function DrawDiagram(Item)
|
||||
var HValue = MaxValue;
|
||||
if(HValue <= 0)
|
||||
HValue = 1;
|
||||
var KX = (obj.width - Left - Right) / arr.length;
|
||||
var KX = (MaxWidth) / arr.length;
|
||||
var KY = (obj.height - Top - Button) / HValue;
|
||||
var DeltaY = 0;
|
||||
var bLine = Item.line;
|
||||
@ -315,10 +332,9 @@ function DrawLines(arr,mode,color)
|
||||
ctx.strokeStyle = "#00F";
|
||||
ctx.fillText(Rigth(" " + AvgValueText, 8), 0, yT + Top);
|
||||
}
|
||||
var CountNameX = 10;
|
||||
if(arr.length < CountNameX)
|
||||
CountNameX = arr.length;
|
||||
var KX3 = (obj.width - Left - Right) / CountNameX;
|
||||
var KX3 = (MaxWidth) / CountNameX;
|
||||
var KDelitel = 1;
|
||||
var Step = arr.length / CountNameX;
|
||||
var StartTime, bNumber;
|
||||
|
@ -676,13 +676,20 @@ function SetArrLog(arr)
|
||||
}
|
||||
CheckSending();
|
||||
};
|
||||
var DiagramArr = [{name:"MAX:ALL_NODES", text:"All nodes count", value:0, red:"#1d506b", MouseText:" nodes"}, {name:"MAX:HASH_RATE_B",
|
||||
text:"HashRate, Tera hash/s", value:0, red:"#286b16", MathPow:2, MathDiv:1024 * 1024 * 1024 * 1024, KPrecision:10, NoTextMax:1,
|
||||
MouseText:" T h/s"}, ];
|
||||
var DiagramArr = [{name:"MAX:ALL_NODES", text:"All nodes count", value:0, red:"#1d506b", MouseText:" nodes", CountNameX:10},
|
||||
{name:"MAX:HASH_RATE_B", text:"HashRate, Tera hash/s", value:0, red:"#286b16", MathPow:2, MathDiv:1024 * 1024 * 1024 * 1024,
|
||||
KPrecision:10, NoTextMax:1, MouseText:" T h/s", CountNameX:10}, ];
|
||||
|
||||
function InitDiagram()
|
||||
{
|
||||
InitDiagramByArr(DiagramArr, 1120);
|
||||
var width = 1120;
|
||||
if(isMobile())
|
||||
{
|
||||
for(var i = 0; i < DiagramArr.length; i++)
|
||||
DiagramArr[i].CountNameX = 4;
|
||||
width = 320;
|
||||
}
|
||||
InitDiagramByArr(DiagramArr, width);
|
||||
};
|
||||
|
||||
function ViewCounters(This)
|
||||
@ -863,6 +870,10 @@ function OKSend()
|
||||
SetDataUpdateTime(20);
|
||||
CancelSend();
|
||||
openModal('idSending');
|
||||
setTimeout(function ()
|
||||
{
|
||||
closeModal();
|
||||
}, 8 * 1000);
|
||||
};
|
||||
|
||||
function CancelSend()
|
||||
|
@ -632,13 +632,13 @@
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<section class="modal dapp-modal" id="idSending" onclick="closeModal()" style="display: none;">
|
||||
<section class="modal dapp-modal" id="idSending" onclick="closeModal()" style="display: none; margin-top: 100px">
|
||||
<h2 class="password-modal__title">Sending Tx</h2><BR>
|
||||
<p class="password-modal__subtitle">Wait 5-8 sec, pls</p>
|
||||
</section>
|
||||
|
||||
|
||||
<section class="modal dapp-modal" id="idSmartEnter" style="display: none;">
|
||||
<section class="modal dapp-modal" id="idSmartEnter" style="display: none; margin-top: 20px; padding: 20px">
|
||||
<h2 class="password-modal__title"><span>Enter number of dapp</span></h2>
|
||||
<p class="password-modal__subtitle">Enter the dapps number that will be added to your account. Attention make sure that you trust this dapp, otherwise you may lose all funds in this account.</p>
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
* Telegram: https://t.me/terafoundation
|
||||
*/
|
||||
|
||||
global.UPDATE_CODE_VERSION_NUM = 1163;
|
||||
global.UPDATE_CODE_VERSION_NUM = 1165;
|
||||
global.MIN_CODE_VERSION_NUM = 1114;
|
||||
global.MINING_VERSION_NUM = 0;
|
||||
global.InitParamsArg = InitParamsArg;
|
||||
|
@ -91,7 +91,7 @@ require("../core/transaction-validator");
|
||||
global.STAT_MODE = 1;
|
||||
setInterval(PrepareStatEverySecond, 1000);
|
||||
var IndexName = "index.html";
|
||||
if(global.HTTPS_HOSTING_DOMAIN)
|
||||
if(global.HTTPS_HOSTING_DOMAIN && HTTP_HOSTING_PORT === 443)
|
||||
{
|
||||
var file_sert = GetDataPath("sertif.lst");
|
||||
CheckCreateDir(GetDataPath("tmp"));
|
||||
@ -353,6 +353,28 @@ function DoCommandNew(response,Type,Path,Params)
|
||||
Method = Method.toLowerCase();
|
||||
if(Method === "dapp" && ArrPath.length === 2)
|
||||
Method = "DappTemplateFile";
|
||||
if(HTTPS_HOSTING_DOMAIN === "terafoundation.org")
|
||||
{
|
||||
if(Method === "map.html")
|
||||
{
|
||||
response.writeHead(301, {"Location":'http://teraexplorer.org/map.html'});
|
||||
return response.end();
|
||||
}
|
||||
else
|
||||
if(Method === "explorer.html")
|
||||
{
|
||||
response.writeHead(301, {"Location":'http://teraexplorer.org'});
|
||||
return response.end();
|
||||
}
|
||||
else
|
||||
if(Method === "DappTemplateFile")
|
||||
{
|
||||
if(Path.substr(0, 1) !== "/")
|
||||
Path = "/" + Path;
|
||||
response.writeHead(301, {"Location":'http://terawallet.org' + Path});
|
||||
return response.end();
|
||||
}
|
||||
}
|
||||
switch(Method)
|
||||
{
|
||||
case "index.html":
|
||||
@ -369,6 +391,7 @@ function DoCommandNew(response,Type,Path,Params)
|
||||
break;
|
||||
case "client":
|
||||
DappClientCodeFile(response, ArrPath[1]);
|
||||
break;
|
||||
default:
|
||||
{
|
||||
var Name = ArrPath[ArrPath.length - 1];
|
||||
|
Loading…
Reference in New Issue
Block a user