fix: 🐛 progress bar mouseup event is not fired, due to preview

This commit is contained in:
gemstone 2025-03-27 16:11:19 +08:00
parent 50829072db
commit 6851672144
2 changed files with 8 additions and 0 deletions

View File

@ -472,6 +472,9 @@ class Progress extends Plugin {
onMouseUp = (e) => {
const { player, config, pos, playerConfig, _state } = this
if (!pos) {
return
}
e.stopPropagation()
e.preventDefault()
Util.checkIsFunction(playerConfig.enableSwipeHandler) && playerConfig.enableSwipeHandler()

View File

@ -151,6 +151,11 @@ export default class ProgressPreview extends Plugin {
this.handlerPreviewClick = (e) => {
e.stopPropagation()
fun(parseInt(this._state.now * 1000, 10) / 1000, e)
if (progress) {
// Make sure the mouse event is unlocked, otherwise the progress bar will still slide
progress.onMouseUp(e)
}
}
this.bind('.xg-spot-content', 'mouseup', this.handlerPreviewClick)