12 lines
289 B
JavaScript
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);
|
|
}
|
|
}
|