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

fix build error

This commit is contained in:
dkanada 2020-12-27 22:19:28 +09:00 committed by GitHub
parent e5503c8e9b
commit 0e5ccfcabf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1417,7 +1417,7 @@ import { appRouter } from '../../../components/appRouter';
passive: true
});
dom.addEventListener(view, 'dblclick', function () {
dom.addEventListener(view, 'dblclick', (e) => {
if (e.target !== view) return;
playbackManager.toggleFullscreen(currentPlayer);
});