mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix syncplay menu. (Single line fix.)
This commit is contained in:
parent
4095776ab3
commit
ea41aeaa2b
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ import appRouter from 'appRouter';
|
||||||
import appHost from 'apphost';
|
import appHost from 'apphost';
|
||||||
import playbackManager from 'playbackManager';
|
import playbackManager from 'playbackManager';
|
||||||
import syncPlayManager from 'syncPlayManager';
|
import syncPlayManager from 'syncPlayManager';
|
||||||
import { show as showGroupSelectionMenu } from 'groupSelectionMenu';
|
import * as groupSelectionMenu from 'groupSelectionMenu';
|
||||||
import browser from 'browser';
|
import browser from 'browser';
|
||||||
import globalize from 'globalize';
|
import globalize from 'globalize';
|
||||||
import imageHelper from 'scripts/imagehelper';
|
import imageHelper from 'scripts/imagehelper';
|
||||||
|
@ -208,7 +208,7 @@ import 'flexStyles';
|
||||||
|
|
||||||
function onSyncButtonClicked() {
|
function onSyncButtonClicked() {
|
||||||
const btn = this;
|
const btn = this;
|
||||||
showGroupSelectionMenu(btn);
|
groupSelectionMenu.show(btn);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onSyncPlayEnabled(event, enabled) {
|
function onSyncPlayEnabled(event, enabled) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue