312
modifications
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 287 : | Ligne 287 : | ||
<script> | <script> | ||
document.addEventListener('DOMContentLoaded', function() { | document.addEventListener('DOMContentLoaded', function() { | ||
document.getElementById('oldlogin').addEventListener('click', function() { | const oldLoginButton = document.getElementById('oldlogin'); | ||
// Supprime tous les anciens gestionnaires d'événements du bouton | |||
const newButton = oldLoginButton.cloneNode(true); | |||
oldLoginButton.parentNode.replaceChild(newButton, oldLoginButton); | |||
// Ajoute le nouveau gestionnaire d'événement | |||
newButton.addEventListener('click', function() { | |||
const elements = document.querySelectorAll( | const elements = document.querySelectorAll( | ||
'.mw-htmlform-field-HTMLTextField, .mw-htmlform-field-HTMLCheckField, .mw-htmlform-field-HTMLSubmitField, .mw-form-related-link-container' | '.mw-htmlform-field-HTMLTextField, .mw-htmlform-field-HTMLCheckField, .mw-htmlform-field-HTMLSubmitField, .mw-form-related-link-container' |