add "noImplicitThis":true

This commit is contained in:
MathMan05 2024-08-19 12:19:42 -05:00
parent ec2fc491d9
commit ce3ea3a271
17 changed files with 58 additions and 59 deletions

View file

@ -446,8 +446,7 @@ class Guild {
console.log(name, category);
func(name, category);
channelselect.hide();
}.bind(this)]
]);
}.bind(this)]]);
channelselect.show();
}
createcategory() {
@ -458,12 +457,11 @@ class Guild {
console.log(this);
name = this.value;
}],
["button", "", "submit", function () {
["button", "", "submit", () => {
console.log(name, category);
this.createChannel(name, category);
channelselect.hide();
}]
]);
}]]);
channelselect.show();
}
delChannel(json) {