remove defunct commented out padding code

This commit is contained in:
Kevin Froman 2020-02-21 02:46:59 -06:00
parent 080933639c
commit 4dae995eaa
1 changed files with 0 additions and 15 deletions

View File

@ -106,21 +106,6 @@ function openThread(bHash, sender, date, sigBool, pubkey, subjectLine){
document.getElementById('subjectView').innerText = subjectLine
resp = stripEndZeroes(resp)
/*
resp = resp.split("")
let zeroCount = 0
for (x = resp.length - 1; x != 0; x--){
if (resp[x] == "0"){
zeroCount += 1
}
else{
break
}
}
resp.splice(resp.length - zeroCount, zeroCount)
resp = resp.join("")
*/
messageDisplay.innerText = resp
var sigEl = document.getElementById('sigValid')