Files
amazon-city-of-gold/utils/handleShowRTPInRulesOption.js
Andrey Sharshov 9487728656 initial
2025-11-16 18:54:31 +01:00

12 lines
289 B
JavaScript

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);
}
}