MediaWiki:MarcEditorDynamicLinks.js: mudanças entre as edições

sem sumário de edição
Sem resumo de edição
Sem resumo de edição
(7 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
/* jshint esversion: 810 */
function main() {
// callscalling main functions
makeMarcFieldHelpLink();
authorityLinks();
setIndicators();
rmCarriageReturn();
rmHtmlTags();
 
// when clicking adding field...
// const addBtn = document.body.querySelector('.multipleTemplateAdder');
// addBtn.addEventListener('click', () => {
// makeMarcFieldHelpLink();
// console.log('adding btm');
// });
 
// Como instâncias do formulário são criadas pelo botão "Adicionar campo",
if (newNodes.length !== 0) {
// if there are new nodes added
console.log('observer before');
makeMarcFieldHelpLink();
authorityLinks();
console.logsetIndicators('observer after');
}
});
}
 
document.addEventListener('DOMContentLoaded', mainfunction (event); {
if (document.readyState === 'complete' || document.readyState !== 'loading') {
main();
});
} else {
document.addEventListener('DOMContentLoaded', main);
}
 
// for no obvious reason to me, the first call to the "main" function is not