Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
143 changed files with 7872 additions and 24844 deletions
Showing only changes of commit 2eb9e3bc56 - Show all commits

View File

@ -28,12 +28,13 @@ $(document).ready(function () {
activeLink.parent().addClass('active');
}
const tables = document.querySelectorAll('.py-attribute-table[data-move-to-id]');
tables.forEach(table => {
let element = document.getElementById(table.getAttribute('data-move-to-id'));
let parent = element.parentNode;
// insert ourselves after the element
parent.insertBefore(table, element.nextSibling);
});
});
const tables = document.querySelectorAll('.py-attribute-table[data-move-to-id]');
tables.forEach(table => {
let element = document.getElementById(table.getAttribute('data-move-to-id'));
let parent = element.parentNode;
// insert ourselves after the element
parent.insertBefore(table, element.nextSibling);
});
});