This commit is contained in:
Mirco Wittrien 2018-10-25 13:08:08 +02:00
parent eb361a00e7
commit 976571504d
1 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ class ServerFolders {
getDescription () {return "Adds the feature to create folders to organize your servers. Right click a server > 'Serverfolders' > 'Create Server' to create a server. To add servers to a folder hold 'Ctrl' and drag the server onto the folder, this will add the server to the folderlist and hide it in the serverlist. To open a folder click the folder. A folder can only be opened when it has at least one server in it. To remove a server from a folder, open the folder and either right click the server > 'Serverfolders' > 'Remove Server from Folder' or hold 'Del' and click the server in the folderlist.";}
getVersion () {return "5.8.2";}
getVersion () {return "5.8.3";}
getAuthor () {return "DevilBro";}
@ -413,7 +413,7 @@ class ServerFolders {
observer = new MutationObserver((changes, _) => {
changes.forEach(
(change, i) => {
if (!document.querySelector(".foldercontainer.foldercontentopen")) return;
if (!document.querySelector(".foldercontent.foldercontentopen")) return;
if (change.type == "attributes" && change.attributeName == "class") {
var serverObj = this.getParentObject(change.target, BDFDB.disCN.guild);
var folderDiv = this.getFolderOfServer(serverObj);