mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 01:23:52 +00:00
remove extraneous console.log()
This commit is contained in:
@@ -47,7 +47,6 @@ store.subscribe(() => {
|
||||
if (newDarkMode) {
|
||||
document.body.classList.add(Classes.DARK);
|
||||
for (const frame of document.getElementsByTagName('iframe')) {
|
||||
console.log('dark');
|
||||
frame.contentWindow?.document.documentElement.classList.add(
|
||||
Classes.DARK,
|
||||
);
|
||||
@@ -55,7 +54,6 @@ store.subscribe(() => {
|
||||
} else {
|
||||
document.body.classList.remove(Classes.DARK);
|
||||
for (const frame of document.getElementsByTagName('iframe')) {
|
||||
console.log('light');
|
||||
frame.contentWindow?.document.documentElement.classList.remove(
|
||||
Classes.DARK,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user