From e8943f73c02b780ac67a20fd0730dd7272331701 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Mon, 16 May 2022 11:08:16 +0530 Subject: [PATCH] removed some comments --- docs/index.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index 5cb31af..831e8ba 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1453,7 +1453,6 @@ // Convert milliseconds to time left in HH:MM:SS format function getTimeLeft(milliseconds) { const diff = milliseconds - Date.now() - // const hours = Math.floor(diff / 3600000) const minutes = Math.floor((diff % 3600000) / 60000) const seconds = Math.floor(((diff % 3600000) % 60000) / 1000) return [`${minutes < 10 ? '0' : ''}${minutes}:${seconds < 10 ? '0' : ''}${seconds}`, ((diff % 3600000) / 60000).toFixed(2)] @@ -1709,8 +1708,6 @@ frag.append(render.marketTransactionCard(transactionDetails)) }) getRef('market_trades').innerHTML = ''; - // const marketTransactionList = getRef('market_transaction_list_template').content.cloneNode(true) - // getRef('market_trades').append(marketTransactionList) getRef('market_trades').append(frag) }).catch(err => { console.log(err)