mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
17 lines
307 B
JavaScript
17 lines
307 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 };
|