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

use jqm listview for series recordings

This commit is contained in:
Luke Pulverenti 2013-12-27 21:46:32 -05:00
parent 1f7bbddb34
commit 607b3482e1
15 changed files with 68 additions and 84 deletions

View file

@ -222,11 +222,10 @@
var link = links[i];
if (selectedIndex == i) {
html += '<li class="selectedLibraryPanelLink">';
html += '<li><a class="selectedLibraryPanelLink libraryPanelLink" href="' + link.href + '">' + link.text + '</a></li>';
} else {
html += '<li>';
html += '<li><a class="libraryPanelLink" href="' + link.href + '">' + link.text + '</a></li>';
}
html += '<a href="' + link.href + '">' + link.text + '</a></li>';
}
html += '</ul>';