mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-21 23:12:58 +01:00
fix: update text when dragging
This commit is contained in:
@@ -75,7 +75,9 @@ function enableHandle() {
|
||||
return;
|
||||
}
|
||||
|
||||
const tUpdateHandleText = utils.debounce(updateHandleText, 250);
|
||||
const tUpdateHandleText = utils.throttle(() => {
|
||||
updateHandleText(getIndexFromTrack());
|
||||
}, 250);
|
||||
|
||||
toggle(true);
|
||||
active = true;
|
||||
|
||||
Reference in New Issue
Block a user