From 8fbfd2ae7718ceeca1acec20d273ebd35060ca63 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Fri, 2 Jan 2026 13:37:23 +1100 Subject: [PATCH] Expose Documentation instance to global scope for console access --- js/Documentation.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/Documentation.js b/js/Documentation.js index 2aec286..9d6b4f8 100644 --- a/js/Documentation.js +++ b/js/Documentation.js @@ -373,3 +373,6 @@ class Documentation { window.originalDocTitle = document.title; const docs = new Documentation(); + +// Expose to global scope for console access +window.docs = docs;