mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
renamed tile view to backdrop
This commit is contained in:
parent
23fc6973d1
commit
3cf4603fff
7 changed files with 10 additions and 10 deletions
|
@ -20,7 +20,7 @@
|
||||||
<div class="viewSettings">
|
<div class="viewSettings">
|
||||||
<div style="display: inline-block;">
|
<div style="display: inline-block;">
|
||||||
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
||||||
<option value="Tile">Tile</option>
|
<option value="Backdrop">Backdrop</option>
|
||||||
<option value="Poster">Poster</option>
|
<option value="Poster">Poster</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<div class="viewSettings">
|
<div class="viewSettings">
|
||||||
<div style="display: inline-block;">
|
<div style="display: inline-block;">
|
||||||
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
||||||
<option value="Tile">Tile</option>
|
<option value="Backdrop">Backdrop</option>
|
||||||
<option value="Poster">Poster</option>
|
<option value="Poster">Poster</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
(function ($, document) {
|
(function ($, document) {
|
||||||
|
|
||||||
var view = "Tile";
|
var view = "Backdrop";
|
||||||
|
|
||||||
// The base query options
|
// The base query options
|
||||||
var query = {
|
var query = {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(function ($, document) {
|
(function ($, document) {
|
||||||
|
|
||||||
var view = "Tile";
|
var view = "Backdrop";
|
||||||
|
|
||||||
// The base query options
|
// The base query options
|
||||||
var query = {
|
var query = {
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view == "Tile") {
|
if (view == "Backdrop") {
|
||||||
html += LibraryBrowser.getPosterDetailViewHtml({
|
html += LibraryBrowser.getPosterDetailViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
useAverageAspectRatio: true,
|
useAverageAspectRatio: true,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(function ($, document) {
|
(function ($, document) {
|
||||||
|
|
||||||
var view = "Tile";
|
var view = "Backdrop";
|
||||||
|
|
||||||
// The base query options
|
// The base query options
|
||||||
var query = {
|
var query = {
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view == "Tile") {
|
if (view == "Backdrop") {
|
||||||
html += LibraryBrowser.getPosterDetailViewHtml({
|
html += LibraryBrowser.getPosterDetailViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
useAverageAspectRatio: true,
|
useAverageAspectRatio: true,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(function ($, document) {
|
(function ($, document) {
|
||||||
|
|
||||||
var view = "Tile";
|
var view = "Backdrop";
|
||||||
|
|
||||||
// The base query options
|
// The base query options
|
||||||
var query = {
|
var query = {
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (view == "Tile") {
|
if (view == "Backdrop") {
|
||||||
html += LibraryBrowser.getPosterDetailViewHtml({
|
html += LibraryBrowser.getPosterDetailViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
useAverageAspectRatio: true,
|
useAverageAspectRatio: true,
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<div class="viewSettings">
|
<div class="viewSettings">
|
||||||
<div style="display: inline-block;">
|
<div style="display: inline-block;">
|
||||||
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
<select data-mini="true" data-inline="true" id="selectView" name="selectView">
|
||||||
<option value="Tile">Tile</option>
|
<option value="Backdrop">Backdrop</option>
|
||||||
<option value="Poster">Poster</option>
|
<option value="Poster">Poster</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue