()
| 272 | try { sidebar.style.pointerEvents = 'auto'; } catch (e) {} |
| 273 | } |
| 274 | export function hideSidebar() { |
| 275 | sidebar.style.transform = 'translateX(100%)'; |
| 276 | sidebarSticky = false; |
| 277 | try { sidebar.style.pointerEvents = 'none'; } catch (e) {} |
| 278 | } |
| 279 | |
| 280 | export function showSidebarContent(d, fromHover = false) { |
| 281 | const sidebarContent = document.getElementById('sidebar-content'); |
no outgoing calls
no test coverage detected