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

incorporate ParentIndexNumber into audio sort order

This commit is contained in:
Luke Pulverenti 2013-04-22 16:17:08 -04:00
parent 3798443c4c
commit d775c77482
2 changed files with 9 additions and 1 deletions

View file

@ -173,6 +173,7 @@
html += '<th></th>';
html += '<th>Track</th>';
html += '<th>Duration</th>';
html += '<th>Play Count</th>';
html += '<th></th>';
html += '</tr>';
@ -196,6 +197,8 @@
html += '<td>' + time + '</td>';
html += '<td>' + (item.UserData ? item.UserData.PlayCount : 0) + '</td>';
html += '<td>' + LibraryBrowser.getUserDataIconsHtml(item) + '</td>';
html += '</tr>';