mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-10 21:47:06 +03:00
Changed empty arrow function to empty function
This commit is contained in:
@@ -27,7 +27,7 @@ export class RectangleTooltip {
|
|||||||
props.maxHeight ??= "100px";
|
props.maxHeight ??= "100px";
|
||||||
props.maxWidth ??= "300px";
|
props.maxWidth ??= "300px";
|
||||||
this.text = props.text;
|
this.text = props.text;
|
||||||
props.buttonFunction ??= () => {};
|
props.buttonFunction ??= function () {};
|
||||||
|
|
||||||
this.container = document.createElement('div');
|
this.container = document.createElement('div');
|
||||||
props.htmlId ??= props.text;
|
props.htmlId ??= props.text;
|
||||||
|
|||||||
Reference in New Issue
Block a user