1
0
Fork 0
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:
Luke Pulverenti 2013-04-17 18:43:31 -04:00
parent 23fc6973d1
commit 3cf4603fff
7 changed files with 10 additions and 10 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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 = {

View file

@ -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,

View file

@ -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,

View file

@ -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,

View file

@ -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>