mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix: 🐛 progress bar mouseup event is not fired, due to preview
This commit is contained in:
parent
50829072db
commit
6851672144
@ -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()
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user