fix scrubbing for chrome android & hide thumb preview on touchend

Chrome android sends TouchEvent which does not have a button property.
This commit is contained in:
ydylla
2020-02-08 18:59:09 +01:00
parent 8b9521d5a5
commit 9075ea189a
2 changed files with 3 additions and 3 deletions

View File

@ -239,8 +239,8 @@ class PreviewThumbnails {
}
startScrubbing(event) {
// Only act on left mouse button (0), or touch device (event.button is false)
if (event.button === false || event.button === 0) {
// Only act on left mouse button (0), or touch device (event.button does not exist or is false)
if (is.nullOrUndefined(event.button) || event.button === false || event.button === 0) {
this.mouseDown = true;
// Wait until media has a duration