1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #290 from bugfixin/firefox-sliderbubble

Remove outdated Firefox check for slider bubble
This commit is contained in:
Anthony Lavado 2019-04-30 01:54:30 -04:00 committed by GitHub
commit 96d4f50b74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -141,8 +141,6 @@ define(['browser', 'dom', 'layoutManager', 'css!./emby-slider', 'registerElement
passive: true
});
// In firefox this feature disrupts the ability to move the slider
if (!browser.firefox) {
dom.addEventListener(this, (window.PointerEvent ? 'pointermove' : 'mousemove'), function (e) {
if (!this.dragging) {
@ -168,7 +166,6 @@ define(['browser', 'dom', 'layoutManager', 'css!./emby-slider', 'registerElement
}, {
passive: true
});
}
if (!supportsNativeProgressStyle) {