mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
module resolution for serverNotifications
This commit is contained in:
parent
ba89941fce
commit
d57629d90f
6 changed files with 6 additions and 6 deletions
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"main": "apiInput.js"
|
||||
}
|
3
src/components/serverNotifications/package.json
Normal file
3
src/components/serverNotifications/package.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"main": "serverNotifications.js"
|
||||
}
|
|
@ -248,10 +248,10 @@ define(['connectionManager', 'playbackManager', 'events', 'inputManager', 'focus
|
|||
});
|
||||
|
||||
if (!enableNativeGamepadKeyMapping() && isGamepadSupported()) {
|
||||
require(["components/apiInput/gamepadtokey"]);
|
||||
require(["components/serverNotifications/gamepadtokey"]);
|
||||
}
|
||||
|
||||
require(["components/apiInput/mouseManager"]);
|
||||
require(["components/serverNotifications/mouseManager"]);
|
||||
|
||||
return serverNotifications;
|
||||
});
|
|
@ -873,7 +873,7 @@ var AppInfo = {};
|
|||
define("fnchecked", ["legacy/fnchecked"], returnFirstDependency);
|
||||
define("dialogHelper", [componentsPath + "/dialogHelper/dialogHelper"], returnFirstDependency);
|
||||
define("inputmanager", ["inputManager"], returnFirstDependency);
|
||||
define("serverNotifications", [componentsPath + "/apiInput/apiInput"], returnFirstDependency);
|
||||
define("serverNotifications", [componentsPath + "/serverNotifications/serverNotifications"], returnFirstDependency);
|
||||
define("appFooter-shared", ["appFooter"], createSharedAppFooter);
|
||||
define("skinManager", [componentsPath + "/skinManager"], returnFirstDependency);
|
||||
define("connectionManager", [], function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue