mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
multiple fixes and otimizations
This commit is contained in:
parent
1171bc1cdf
commit
b49524e5ea
10 changed files with 9 additions and 18 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
import itemShortcuts from '../../components/shortcuts';
|
||||
import inputManager from '../../scripts/inputManager';
|
||||
import { playbackManager } from '../../components/playback/playbackmanager';
|
||||
|
@ -74,8 +73,8 @@ import ServerConnections from '../../components/ServerConnections';
|
|||
}
|
||||
|
||||
const self = this;
|
||||
import('../../components/multiSelect/multiSelect').then((MultiSelect) => {
|
||||
self.multiSelect = new MultiSelect.default({
|
||||
import('../../components/multiSelect/multiSelect').then(({default: MultiSelect}) => {
|
||||
self.multiSelect = new MultiSelect({
|
||||
container: self,
|
||||
bindOnClick: false
|
||||
});
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
import layoutManager from '../../components/layoutManager';
|
||||
import browser from '../../scripts/browser';
|
||||
import actionsheet from '../../components/actionSheet/actionSheet';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue