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

add notification services tab

This commit is contained in:
Luke Pulverenti 2015-04-05 23:47:01 -04:00
parent beb21adecf
commit 59eea6f602
8 changed files with 46 additions and 11 deletions

View file

@ -28,6 +28,9 @@
else if (context == 'livetv') {
categories.push('Live TV');
}
else if (context == 'notifications') {
categories.push('Notifications');
}
return categories;
}
@ -85,6 +88,10 @@
Dashboard.setPageTitle(Globalize.translate('TitleLiveTV'));
page.setAttribute('data-helpurl', 'https://github.com/MediaBrowser/Wiki/wiki/Live%20TV');
}
else if (context == 'notifications') {
Dashboard.setPageTitle(Globalize.translate('TitleNotifications'));
page.setAttribute('data-helpurl', 'https://github.com/MediaBrowser/Wiki/wiki/Notifications');
}
}).on('pageshow', "#appServicesPage", function () {