This commit is contained in:
JOLIMAITRE Matthieu 2024-02-04 17:30:56 +01:00
commit adc618f153
31 changed files with 769 additions and 0 deletions

4
models/reverse.js Normal file
View file

@ -0,0 +1,4 @@
const top_element = document.getElementById("top");
const copy = top_element.cloneNode(true);
copy.id = "bottom";
top_element.parentNode.appendChild(copy);