Remove unnecessary comment in simple.js

This commit is contained in:
Woody 2023-11-09 18:18:55 +01:00
parent 23374e98ae
commit 40cc30e054
No known key found for this signature in database
GPG Key ID: 9872D7F5072789B2

View File

@ -51,7 +51,6 @@ fetch(getURL("/index.htm"))
script.parentNode.replaceChild(newScript, script); script.parentNode.replaceChild(newScript, script);
}); });
finalizeSimpleUI(); finalizeSimpleUI();
}) })
.catch(error => console.error('Error:', error)); .catch(error => console.error('Error:', error));
@ -94,19 +93,6 @@ function simplifyUI(doc) {
// Hide filter options // Hide filter options
gId("filters").style.display = "none"; gId("filters").style.display = "none";
/* var observer = new MutationObserver(function (mutations) {
mutations.forEach(function (mutation) {
if (mutation.attributeName === "class") {
let element = mutation.target;
if (element.matches("#pallist .lstI.selected")) {
element.style.top = "0px";
}
}
});
});
var config = { attributes: true, childList: true, subtree: true };
observer.observe(doc.body, config); */
} }
// Called when simple UI is ready // Called when simple UI is ready