mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
stub out channel mapper popup
This commit is contained in:
parent
cce4c23fe6
commit
57ac888060
4 changed files with 93 additions and 2 deletions
|
@ -361,7 +361,7 @@
|
|||
deleteProvider(page, id);
|
||||
break;
|
||||
case 'map':
|
||||
alert('coming soon');
|
||||
mapChannels(page, id);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -371,6 +371,16 @@
|
|||
});
|
||||
}
|
||||
|
||||
function mapChannels(page, providerId) {
|
||||
|
||||
require(['components/channelmapper/channelmapper'], function (channelmapper) {
|
||||
new channelmapper().show({
|
||||
serverId: ApiClient.serverInfo().Id,
|
||||
providerId: providerId
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function deleteProvider(page, id) {
|
||||
|
||||
var message = Globalize.translate('MessageConfirmDeleteGuideProvider');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue