mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 18:02:54 -05:00
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
console.log("Initializing windows and arrays...")
|
|
|
|
const d = document.getElementsByClassName("draggable");
|
|
|
|
for (let i = 0; i < d.length; i++) {
|
|
d[i].parentElement.style.position = "absolute";
|
|
d[i].parentElement.style.zIndex = 1;
|
|
}
|
|
let zIndex = 1;
|
|
|
|
console.log("Done!")
|