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 style="display: inline-block;">
<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>
</select>
</div>

View file

@ -20,7 +20,7 @@
<div class="viewSettings">
<div style="display: inline-block;">
<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>
</select>
</div>

View file

@ -1,7 +1,7 @@
(function ($, document) {
var view = "Tile";
var view = "Backdrop";
// The base query options
var query = {

View file

@ -1,6 +1,6 @@
(function ($, document) {
var view = "Tile";
var view = "Backdrop";
// The base query options
var query = {
@ -28,7 +28,7 @@
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
if (view == "Tile") {
if (view == "Backdrop") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
useAverageAspectRatio: true,

View file

@ -1,6 +1,6 @@
(function ($, document) {
var view = "Tile";
var view = "Backdrop";
// The base query options
var query = {
@ -28,7 +28,7 @@
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
if (view == "Tile") {
if (view == "Backdrop") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
useAverageAspectRatio: true,

View file

@ -1,6 +1,6 @@
(function ($, document) {
var view = "Tile";
var view = "Backdrop";
// The base query options
var query = {
@ -28,7 +28,7 @@
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
if (view == "Tile") {
if (view == "Backdrop") {
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
useAverageAspectRatio: true,

View file

@ -18,7 +18,7 @@
<div class="viewSettings">
<div style="display: inline-block;">
<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>
</select>
</div>