1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-27 03:01:03 +02:00

Merge pull request #112 from google/speaker-notes-closed

Show speaker notes as closed by default
This commit is contained in:
Martin Geisler
2023-01-05 10:48:09 +01:00
committed by GitHub

View File

@ -61,7 +61,7 @@
// Get the state of the speaker note window: "inline-open", "inline-closed",
// or "popup".
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