This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Toggleable dark mode for those of us that care about that kind of thing. | |
const toggleButton = '<button class="sidebar__toolbar-button rc-tooltip rc-tooltip--down js-button" aria-label="Toggle Dark Mode">D</button>'; | |
function addDarkModeToggle() { | |
const sidebarToolbar = $('.sidebar__toolbar'); | |
// wait for the sidebar toolbar to be visible | |
// this will also be false if the toolbar doesn't exist yet | |
if(!sidebarToolbar.is(':visible')) { | |
setTimeout(addDarkModeToggle, 250); |