'; var htmlValues = '
' + info.algo + '
'; for (var port in info.ports){ htmlKeys += '
URL (difficulty ' + info.ports[port].diff + '):
'; htmlValues += '
stratum+tcp://' + info.host + ':' + port + '
'; } if (info.coin) $('#coinInfoUsername').text('Your ' + info.coin.name + ' Wallet Address'); else $('#coinInfoUsername').text('Your Public Key'); $('.coinInfoData').remove(); $('#coinInfoRowKeys').append(htmlKeys); $('#coinInfoRowValues').append(htmlValues); } $('#coinGlowTrigger').click(function(event){ event.preventDefault(); $('.menuList').addClass('glow'); setTimeout(function(){ $('.menuList').removeClass('glow'); }, 200); return false; }); $('.poolOption').click(function(event){ event.preventDefault(); showCoinConfig($(this).data('info')); $('#coinInfoBackground,#coinInfo').removeClass('hidden'); $('#coinInfoBackground').css('opacity', 0.7); return false; }); $('#coinInfoBackground,#coinInfoClose').click(function(event){ event.preventDefault(); $('#coinInfoBackground,#coinInfo').addClass('hidden'); $('#coinInfoBackground').css('opacity', 0.0); return false; }); $('#nompAppDownload').click(function(event){ event.preventDefault(); alert('NOMP App development still in progress...'); return false; });