core: rename banner field to poster #10092 (#10134)

This commit is contained in:
Diego Heras
2020-11-08 00:43:33 +01:00
committed by GitHub
parent 94dfb9b8a7
commit c5dd37b836
212 changed files with 287 additions and 288 deletions

View File

@@ -651,14 +651,14 @@ function updateReleasesRow(row)
var labels = $(row).find("span.release-labels");
var TitleLink = $(row).find("td.Title > a");
var IMDBId = $(row).data("imdb");
var Banner = $(row).data("banner");
var Poster = $(row).data("poster");
var Description = $(row).data("description");
var DownloadVolumeFactor = parseFloat($(row).find("td.DownloadVolumeFactor").html());
var UploadVolumeFactor = parseFloat($(row).find("td.UploadVolumeFactor").html());
var TitleTooltip = "";
if (Banner)
TitleTooltip += "<img src='" + Banner + "' /><br />";
if (Poster)
TitleTooltip += "<img src='" + Poster + "' /><br />";
if (Description)
TitleTooltip += Description;