mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
/**
|
|
* StaffHider
|
|
*
|
|
* Hide staff elements if enabled in the settings.
|
|
*/
|
|
|
|
import { $$ } from './utils/dom';
|
|
|
|
function hideStaffTools() {
|
|
if (window.booru.hideStaffTools == "true") {
|
|
$$('.js-staff-action').forEach(el => {
|
|
el.classList.add('hidden');
|
|
});
|
|
}
|
|
}
|
|
|
|
export { hideStaffTools };
|