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

Add initial support for keyboard navigation

see #303
This commit is contained in:
Odd Stråbø 2019-05-08 07:03:59 +02:00
parent ce06f79502
commit 1341a53543
3 changed files with 59 additions and 0 deletions

View file

@ -484,6 +484,9 @@ var AppInfo = {};
onGlobalizeInit(browser);
});
});
require(["keyboardnavigation"], function(keyboardnavigation) {
keyboardnavigation.enable();
});
});
});
}
@ -880,6 +883,7 @@ var AppInfo = {};
define("serverNotifications", [componentsPath + "/serverNotifications/serverNotifications"], returnFirstDependency);
define("appFooter-shared", ["appFooter"], createSharedAppFooter);
define("skinManager", [componentsPath + "/skinManager"], returnFirstDependency);
define("keyboardnavigation", [componentsPath + "/keyboardnavigation"], returnFirstDependency);
define("connectionManager", [], function () {
return ConnectionManager;
});