Skip to content

Commit a6032f9

Browse files
authored
Add files via upload
1 parent b9719b1 commit a6032f9

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

src/script.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ function init(){
310310
//Populate Icons
311311
$C['TogMode'].innerHTML = $I['d'];
312312
$C['TimerRefresh'].innerHTML = $I['refresh'];
313-
document.getElementById('TimerLoader').innerHTML = $I['loadico'];
313+
document.getElementById('TimerLoader').innerHTML = $I['load'];
314314
document.querySelector('#HeadMenu .select-point').innerHTML = $I['arrow'];
315315
document.getElementById('AddrDelete').innerHTML = $I['delete'];
316316
document.querySelector('#AddrRecent .select-point').innerHTML = $I['arrow'];
@@ -875,7 +875,7 @@ function Workers_sort(srt, ord, sts){
875875
n_in = $I['sort'],
876876
r = document.getElementById('WorkerSortRate'),
877877
r_cl = 'C2bk C0fl'+mde+' hov',
878-
r_in = '<div class="preload C0fl'+mde+'">'+$I['loadico']+'</div>',
878+
r_in = $I['load'],
879879
ordV = (ord === 'D') ? 'A' : 'D',
880880
orot = (ord === 'D') ? 'rot90' : 'rot270';
881881

@@ -1011,7 +1011,7 @@ function MinerPayments(typ){
10111011
function EmailToggle(){
10121012
var ic = document.querySelector('#EmailToggleBtn .DiscIcon');
10131013
ic.classList.add('preload');
1014-
ic.innerHTML = $I['loadico'];
1014+
ic.innerHTML = $I['load'];
10151015
api('toggleEmail').then(function(){
10161016
api('user').then(function(){
10171017
var ico = $I['x'],
@@ -1048,7 +1048,7 @@ function AutoPay(s){
10481048

10491049
if(c === 'OK'){
10501050
b.classList.remove('C1bk','C4bk','C5bk');
1051-
b.innerHTML = '<div class="C0fl'+mde+' preload">'+$I['loadico']+'</div>';
1051+
b.innerHTML = $I['load'];
10521052
api('updatethreshold', '', NumInput(document.getElementById('AutoPayFld').value)).then(function(){
10531053
b.classList.add('C5bk');
10541054
b.innerHTML = $$['trn']['updt'];
@@ -1425,6 +1425,7 @@ function Tbl(tar, typ, pge, lim){
14251425
ins += '<td class="'+$$['tbl'][typ][k]['cls']+'">'+$$['tbl'][typ][k]['lbl']+'</td>';
14261426
}
14271427
ins += '</tr>';
1428+
14281429
if($D[typ]){
14291430
for(var i = 0; i < lim; i++){
14301431
if($D[typ][i]){
@@ -1442,8 +1443,8 @@ function Tbl(tar, typ, pge, lim){
14421443
val = '<span class="'+clr+'">'+Perc(val)+'</span>';
14431444
}else if(k === 'togo'){
14441445
val = BlockToGo($D[typ][i]['height'], $D[typ][i]['val']);
1445-
}else{
1446-
if($$['tbl'][typ]['hsh'] && $$['tbl'][typ]['hsh'] === 'y'){
1446+
}else if(k === 'hash'){
1447+
if($$['tbl'][typ]['hash'] && $$['tbl'][typ]['hash']['hsh'] === 'y'){
14471448
val = '<div class="HashTrun" data-hash="'+val+'">'+val+'</div>';
14481449
}
14491450
}
@@ -1461,6 +1462,7 @@ function Tbl(tar, typ, pge, lim){
14611462
document.getElementById(tar).innerHTML = ins;
14621463
if($D[typ]){
14631464
var tr = (typ === 'pay') ? 'tx' : '';
1465+
console.log(tr);
14641466
HashTrun(tr);
14651467
if(tar === 'PageBot'){
14661468
var pgs = 0,

src/style.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ header,section,footer{margin:0;padding:0}
6969
.shim20{margin-bottom:20px}
7070

7171
.ROW0{background-color:transparent}
72-
.ROW1{background-color:rgba(55,55,55,0.05)}
73-
.ROW0:hover,.ROW1:hover{background-color:rgba(55,55,55,0.1)}
72+
.ROW1{background-color:rgba(5,5,5,0.05)}
73+
.ROW0:hover,.ROW1:hover{background-color:rgba(5,5,5,0.1)}
7474

7575
.WingPanel{position:relative;width:calc(100% - 50px);margin-left:25px}
7676
.WingPanel table td{padding:5px 4px;white-space:nowrap}

0 commit comments

Comments
 (0)