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

Add toast and confirm to pluginManager.

This commit is contained in:
Ian Walton 2021-04-19 18:37:22 -04:00
parent 7535fb99fa
commit 123ff9f834

View file

@ -6,6 +6,8 @@ import { playbackManager } from './playback/playbackmanager';
import { appHost } from '../components/apphost';
import { appRouter } from '../components/appRouter';
import * as inputManager from '../scripts/inputManager';
import toast from '../components/toast/toast';
import confirm from '../components/confirm/confirm';
/* eslint-disable indent */
@ -97,7 +99,9 @@ import * as inputManager from '../scripts/inputManager';
globalize,
appHost,
appRouter,
inputManager
inputManager,
toast,
confirm
});
} else {
console.debug(`Loading plugin (via dynamic import): ${pluginSpec}`);