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

update movie filters

This commit is contained in:
Luke Pulverenti 2015-08-25 22:13:28 -04:00
parent 20dfe14bb1
commit d94811ed33
92 changed files with 1319 additions and 376 deletions

View file

@ -412,6 +412,11 @@
// id: 'emby'
//});
menuItems.push({
name: Globalize.translate('ButtonOther'),
id: 'other'
});
require(['actionsheet'], function () {
ActionSheetElement.show({
@ -419,7 +424,13 @@
positionTo: button,
callback: function (id) {
Dashboard.navigate(getProviderConfigurationUrl(id));
if (id == 'other') {
Dashboard.alert({
message: Globalize.translate('ForAdditionalLiveTvOptions')
});
} else {
Dashboard.navigate(getProviderConfigurationUrl(id));
}
}
});
@ -440,6 +451,11 @@
id: 'm3u'
});
menuItems.push({
name: Globalize.translate('ButtonOther'),
id: 'other'
});
require(['actionsheet'], function () {
ActionSheetElement.show({
@ -447,7 +463,13 @@
positionTo: button,
callback: function (id) {
Dashboard.navigate('livetvtunerprovider-' + id + '.html');
if (id == 'other') {
Dashboard.alert({
message: Globalize.translate('ForAdditionalLiveTvOptions')
});
} else {
Dashboard.navigate('livetvtunerprovider-' + id + '.html');
}
}
});