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

Merge pull request #74 from cvium/master

Add download menu option to media items
This commit is contained in:
Vasily 2019-01-30 15:53:08 +03:00 committed by GitHub
commit 0db5ebf618
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,11 +211,11 @@ define(['browser', 'appStorage', 'apphost', 'loading', 'connectionManager', 'glo
} }
if (user.Policy.EnableContentDownloading && appHost.supports('filedownload')) { if (user.Policy.EnableContentDownloading && appHost.supports('filedownload')) {
//items.push({ menuItems.push({
// name: Globalize.translate('ButtonDownload'), name: Globalize.translate('ButtonDownload'),
// id: 'download', id: 'download',
// ironIcon: 'file-download' ironIcon: 'file-download'
//}); });
} }
if (user.Policy.EnableContentDownloading && appHost.supports('sync')) { if (user.Policy.EnableContentDownloading && appHost.supports('sync')) {