philomena/assets/js/staffhider.ts
2024-07-03 22:54:14 +02:00

13 lines
278 B
TypeScript

/**
* StaffHider
*
* Hide staff elements if enabled in the settings.
*/
import { $$, hideEl } from './utils/dom';
export function hideStaffTools() {
if (window.booru.hideStaffTools === 'true') {
$$<HTMLElement>('.js-staff-action').forEach((el) => hideEl(el));
}
}