-
Hello, Is there a way to set the thickness of the handles on both sides of a region? Thank you very much! |
Beta Was this translation helpful? Give feedback.
Answered by
katspaugh
May 4, 2023
Replies: 2 comments
-
In v6, you can directly adjust it in CSS, I believe. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sojastar
-
Thanks! This piece of code did the trick: const HANDLE_THICKNESS = "10px";
let noteEditorHandles = document.getElementsByClassName("wavesurfer-handle");
for (let handle of noteEditorHandles) {
handle.style.width = HANDLE_THICKNESS;
handle.style.color = "white";
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In v6, you can directly adjust it in CSS, I believe.