mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-31 06:58:30 +00:00
4.61.0
* Changed: Replace the old Twitter widget on the FFZ Control Center's Home page with a custom Bluesky widget. * Fixed: Settings profile rules for the current channel and current category not functioning correctly. * Developer Changed: We TypeScript (a work-in-progress conversion) * Developer Fixed: The GraphQL inspector not properly displaying data.
This commit is contained in:
parent
31e7ce4ac5
commit
18491b0873
25 changed files with 846 additions and 208 deletions
|
@ -443,13 +443,13 @@ export class ManagedStyle {
|
|||
}
|
||||
|
||||
|
||||
export class ClickOutside<TFunc extends (event: MouseEvent) => void> {
|
||||
export class ClickOutside {
|
||||
|
||||
el: HTMLElement | null;
|
||||
cb: TFunc | null;
|
||||
cb: ((event: MouseEvent) => void) | null;
|
||||
_fn: ((event: MouseEvent) => void) | null;
|
||||
|
||||
constructor(element: HTMLElement, callback: TFunc) {
|
||||
constructor(element: HTMLElement, callback: ((event: MouseEvent) => void)) {
|
||||
this.el = element;
|
||||
this.cb = callback;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue