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

Fix export of "showPlayerSelection()" by renaming it to "show()"

This commit is contained in:
Delgan 2020-05-21 19:16:19 +02:00 committed by GitHub
parent 70d01c92d4
commit 76ad33449f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ function getIcon(target) {
}
}
export function showPlayerSelection(button) {
export function show(button) {
var currentPlayerInfo = playbackManager.getPlayerInfo();
@ -321,5 +321,5 @@ events.on(playbackManager, 'pairerror', function (e) {
});
export default {
show: showPlayerSelection
show: show
};