From db107ff300021195f1d4c67406fa80d11fd96d6b Mon Sep 17 00:00:00 2001 From: Ian Walton Date: Wed, 14 Apr 2021 18:59:51 -0400 Subject: [PATCH] Add inputManager to plugin. --- src/components/pluginManager.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/pluginManager.js b/src/components/pluginManager.js index d4424c3021..3895cef7a2 100644 --- a/src/components/pluginManager.js +++ b/src/components/pluginManager.js @@ -5,6 +5,7 @@ import appSettings from '../scripts/settings/appSettings'; import { playbackManager } from './playback/playbackmanager'; import { appHost } from '../components/apphost'; import { appRouter } from '../components/appRouter'; +import * as inputManager from '../scripts/inputManager'; /* eslint-disable indent */ @@ -95,7 +96,8 @@ import { appRouter } from '../components/appRouter'; playbackManager, globalize, appHost, - appRouter + appRouter, + inputManager }); } else { console.debug(`Loading plugin (via dynamic import): ${pluginSpec}`);