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

expose more dlna profile settings in the web interface

This commit is contained in:
Luke Pulverenti 2014-04-20 21:36:12 -04:00
parent 4cee826e91
commit d71c1a121f
3 changed files with 100 additions and 9 deletions

View file

@ -34,7 +34,7 @@
var profile = profiles[i];
html += '<li>';
html += '<a href="dlnaprofile.html?id=' + profile.Id + '">';
html += '<a href="dlnaprofile.html?id=' + profile.Id + '" style="font-size:14px;">';
html += profile.Name;
html += '</a>';
@ -69,7 +69,7 @@
var profile = profiles[i];
html += '<li>';
html += '<a href="dlnaprofile.html?id=' + profile.Id + '">';
html += '<a href="dlnaprofile.html?id=' + profile.Id + '" style="font-size:14px;">';
html += profile.Name;
html += '</a>';
html += '</li>';