1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-25 08:53:01 +02:00

Show speaker notes as closed by default

This makes it clearer that the notes are extra content.
This commit is contained in:
Martin Geisler 2023-01-05 08:06:09 +01:00
parent 15f88b3700
commit 986d607d1e

View File

@ -61,7 +61,7 @@
// Get the state of the speaker note window: "inline-open", "inline-closed", // Get the state of the speaker note window: "inline-open", "inline-closed",
// or "popup". // or "popup".
function getState() { function getState() {
return window.localStorage["speakerNotes"] || "inline-open"; return window.localStorage["speakerNotes"] || "inline-closed";
} }
// Set the state of the speaker note window. Call applyState as needed // Set the state of the speaker note window. Call applyState as needed