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

Added IDtoService

This commit is contained in:
Luke Pulverenti 2013-09-04 13:02:19 -04:00
parent 9506f259e7
commit b75396e20f
2 changed files with 5 additions and 2 deletions

View file

@ -254,7 +254,7 @@
html += '<th>Artist</th>'; html += '<th>Artist</th>';
} }
html += '<th class="tabletColumn">Duration</th>'; html += '<th class="tabletColumn">Runtime</th>';
html += '<th class="tabletColumn">Play Count</th>'; html += '<th class="tabletColumn">Play Count</th>';
html += '<th class="tabletColumn userDataCell"></th>'; html += '<th class="tabletColumn userDataCell"></th>';

View file

@ -35,7 +35,10 @@
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioAlbum" value="on" checked="checked" data-sortby="Album,SortName" data-mini="true"> <input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioAlbum" value="on" checked="checked" data-sortby="Album,SortName" data-mini="true">
<label for="radioAlbum">Album</label> <label for="radioAlbum">Album</label>
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioArtist" value="on" checked="checked" data-sortby="Artist" data-mini="true"> <input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioAlbumArtist" value="on" data-sortby="AlbumArtist,Album,SortName" data-mini="true">
<label for="radioAlbumArtist">Album Artist</label>
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioArtist" value="on" data-sortby="Artist,Album,SortName" data-mini="true">
<label for="radioArtist">Artist</label> <label for="radioArtist">Artist</label>
<input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated,Artist,Album,SortName" data-mini="true"> <input class="radioSortBy" data-theme="c" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated,Artist,Album,SortName" data-mini="true">