1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-22 18:30:33 +02:00

Remove condition on default notes.open

This commit is contained in:
Alexandre Senges 2023-08-15 10:44:01 +00:00
parent 16d1beff00
commit d7b743028d

View File

@ -49,7 +49,7 @@
break;
case "inline-open":
popIn.classList.add("hidden");
notes.open = notes.getAttribute("solution") === null;
notes.open = true;
notes.classList.remove("hidden");
break;
case "inline-closed":