diff options
Diffstat (limited to 'src/js/arching-kaos-tools.js')
-rw-r--r-- | src/js/arching-kaos-tools.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/js/arching-kaos-tools.js b/src/js/arching-kaos-tools.js index 300d50b..55056b3 100644 --- a/src/js/arching-kaos-tools.js +++ b/src/js/arching-kaos-tools.js @@ -522,14 +522,12 @@ function getipfstext(ipfsHash, articleid){ var pre = document.createElement("div"); var lines = text.split('\n'); // remove one line, starting at the first position - lines.splice(0,1); + // lines.splice(0,1); // join the array back into a single string var newtext = lines.join('\n'); pre.innerHTML = DOMPurify.sanitize(marked.parse(newtext)); divs.appendChild(pre); } - progressPlaceholder.max++; - progressPlaceholder.value++; }) } }) |