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

Move focusManager to ES6

This commit is contained in:
Xantios Krugor 2020-08-03 14:20:31 +02:00
parent 7f72eca5fa
commit 32e3df7801
4 changed files with 7 additions and 5 deletions

View file

@ -697,7 +697,7 @@ define(['browser', 'layoutManager', 'dom', 'focusManager', 'ResizeObserver', 'sc
function onFrameClick(e) {
if (e.which === 1) {
var focusableParent = focusManager.focusableParent(e.target);
var focusableParent = focusManager.default.focusableParent(e.target);
if (focusableParent && focusableParent !== document.activeElement) {
focusableParent.focus();
}