/home/vianto5/heredit.mx/wp-content/plugins/code-snippets/js/services/settings
NameSizeModeActions
editor-preview.ts16940644editdlrm
index.ts2030644editdlrm
screen-meta.ts4790644editdlrm
tabs.ts27480644editdlrm
version.ts49930644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/code-snippets/js/services/settings/screen-meta.ts (479B)
/** * Relocate the WordPress Screen Options and Help tabs (and their panels) * from above the page content into the slot rendered directly below the * settings section subnavigation bar. */ export const relocateScreenMeta = () => { const slot = document.getElementById('snippets-screen-meta-slot') const meta = document.getElementById('screen-meta') const links = document.getElementById('screen-meta-links') if (slot && meta && links) { slot.append(meta, links) } }