philomena/assets/js/staffhider.js

18 lines
306 B
JavaScript
Raw Normal View History

2019-10-04 20:09:52 -04:00
/**
* StaffHider
*
* Hide staff elements if enabled in the settings.
*/
import { $$ } from './utils/dom';
function hideStaffTools() {
2019-12-20 17:35:46 -05:00
if (window.booru.hideStaffTools == "true") {
2019-10-04 20:09:52 -04:00
$$('.js-staff-action').forEach(el => {
el.classList.add('hidden');
});
}
}
export { hideStaffTools };