ArticleTemplates/assets/js/modules/myGuardianFollowInit.js (9 lines of code) (raw):
function init() {
if (GU.opts.myGuardianEnabled) {
const followButtons = document.querySelectorAll('.my-guardian-follow-tag');
followButtons.forEach((followButton) => {
followButton.style.display = 'inline-block';
});
}
}
export { init };