Expose Documentation instance to global scope for console access

This commit is contained in:
2026-01-02 13:37:23 +11:00
parent 7da85222c8
commit 8fbfd2ae77

View File

@@ -373,3 +373,6 @@ class Documentation {
window.originalDocTitle = document.title; window.originalDocTitle = document.title;
const docs = new Documentation(); const docs = new Documentation();
// Expose to global scope for console access
window.docs = docs;