fix(post): correct hiding
This commit is contained in:
parent
4f64a105c8
commit
ddff820d2b
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ const tagToHeader = new Map([
|
||||||
const makeFold = (h, i) => {
|
const makeFold = (h, i) => {
|
||||||
const toggle = document.createElement("span");
|
const toggle = document.createElement("span");
|
||||||
toggle.style.fontStyle = "normal";
|
toggle.style.fontStyle = "normal";
|
||||||
toggle.textContent = "v";
|
toggle.textContent = ">";
|
||||||
|
|
||||||
// only unfold first algorithm problem
|
// only unfold first algorithm problem
|
||||||
if (urlToTopic() === "algorithms" && i === 0) toggle.textContent = "v";
|
if (urlToTopic() === "algorithms" && i === 0) toggle.textContent = "v";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue