This commit is contained in:
Andrey Sharshov
2025-11-16 18:54:31 +01:00
commit 9487728656
2342 changed files with 62687 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export default function handleShowRTPInRulesOption() {
if (!__OPTIONS__.ui.show_rtp_in_rules) {
const styleEl = document.createElement('style');
styleEl.textContent = `
#section_rtp {
display: none !important;
}
`;
document.head.appendChild(styleEl);
}
}