mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
Added critic rating as a sort order
This commit is contained in:
parent
49af0a0d81
commit
bcda81a83d
@ -50,6 +50,9 @@
|
||||
<input class="radioSortBy" type="radio" name="radioSortBy" data-theme="c" id="radioCommunityRating" value="off" data-sortby="CommunityRating" data-mini="true">
|
||||
<label for="radioCommunityRating">Community Rating</label>
|
||||
|
||||
<input class="radioSortBy" type="radio" name="radioSortBy" data-theme="c" id="radioCriticRating" value="off" data-sortby="CriticRating" data-mini="true">
|
||||
<label for="radioCriticRating">Critic Rating</label>
|
||||
|
||||
<input class="radioSortBy" type="radio" name="radioSortBy" data-theme="c" id="radioDateCreated" value="off" data-sortby="DateCreated" data-mini="true">
|
||||
<label for="radioDateCreated">Date Added</label>
|
||||
|
||||
|
@ -223,7 +223,7 @@
|
||||
|
||||
$("#radioMovies", page).on("click", function () {
|
||||
|
||||
shape = "backdrop";
|
||||
shape = "poster";
|
||||
loadItems(page, {
|
||||
MediaTypes: "",
|
||||
IncludeItemTypes: "Movie",
|
||||
@ -235,7 +235,7 @@
|
||||
|
||||
$("#radioShows", page).on("click", function () {
|
||||
|
||||
shape = "backdrop";
|
||||
shape = "poster";
|
||||
loadItems(page, {
|
||||
MediaTypes: "",
|
||||
IncludeItemTypes: "Series",
|
||||
|
Loading…
Reference in New Issue
Block a user