remove unneeded string concatenation
This commit is contained in:
parent
86049fc71f
commit
4772ee59ad
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@
|
|||
li.style.overflow = "hidden";
|
||||
li.style.textAlign = "right";
|
||||
li.style.display = "table-cell";
|
||||
li.textContent = "" + reading_time.reading_time + '\u2009m';
|
||||
li.textContent = reading_time.reading_time + '\u2009m';
|
||||
|
||||
const ul = document.querySelector("#" + reading_time.flux.id + " ul.horizontal-list");
|
||||
ul.insertBefore(li, ul.children[ul.children.length - 1]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue