You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Refactored list rendering (`GitHubActivityFeed`, `ProjectRenderer`, `BlogRenderer`) to utilize `DocumentFragment`. This prevents excessive layout trashing by batching DOM insertions into a single operation rather than appending each node individually in a loop.
22
22
- Optimized DOM node queries by caching previously selected elements into memory maps (`moduleBtns`) rather than running `document.querySelectorAll()` repeatedly during dynamic user interactions (such as the GAPbot configurator button clicks). This minimizes Reflow and Repaint calculations within the browser engine.
23
23
- Enhanced accessibility by adding dynamic `aria-expanded` state to the mobile navigation toggle button in `app.js` and `index.html`.
24
+
- Refactored Web3 Demo to ensure robust `doCheckConnection()` scoping.
25
+
- Terminal boot sequence now prints active client hardware and connection statuses (`navigator.hardwareConcurrency`, `navigator.connection`) instead of fake uptime indicators.
0 commit comments