Skip to content

Instantly share code, notes, and snippets.

@taupecat
Created April 11, 2021 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taupecat/ef446c53f95fee2af82a0b06efe6c44e to your computer and use it in GitHub Desktop.
Save taupecat/ef446c53f95fee2af82a0b06efe6c44e to your computer and use it in GitHub Desktop.
function replaceFileNames() {
let c = document.getElementById('included-files-fie-on-wp-footer').innerHTML;
const includedFilesList = document.getElementById('included-files-list');
if ( null === includedFilesList ) return;
includedFilesList.innerHTML = c;
}
jQuery( function() {
replaceFileNames();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment