We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b180788 commit 0898354Copy full SHA for 0898354
Doc/howto/logging.rst
@@ -403,11 +403,13 @@ following diagram.
403
function updateBody(theme) {
404
let elem = document.body;
405
406
+ elem.classList.remove('dark-theme');
407
+ elem.classList.remove('light-theme');
408
if (theme === 'dark') {
409
elem.classList.add('dark-theme');
410
}
- else {
- elem.classList.remove('dark-theme');
411
+ else if (theme === 'light') {
412
+ elem.classList.add('light-theme');
413
414
415
Doc/howto/logging_flow.svg
0 commit comments