1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

support channels with dlna

This commit is contained in:
Luke Pulverenti 2014-07-29 23:31:35 -04:00
parent b89707f7b9
commit 27cc543b5f
13 changed files with 20 additions and 34 deletions

View file

@ -133,9 +133,11 @@
html += '<div class="cardPadder"></div>';
html += '<a class="cardContent" href="#" data-ajax="false" data-haspw="' + user.HasPassword + '" data-username="' + user.Name + '" data-userid="' + user.Id + '">';
var imgUrl;
if (user.PrimaryImageTag) {
var imgUrl = ApiClient.getUserImageUrl(user.Id, {
imgUrl = ApiClient.getUserImageUrl(user.Id, {
width: 300,
tag: user.PrimaryImageTag,
type: "Primary"
@ -147,7 +149,9 @@
var background = LibraryBrowser.getMetroColor(user.Id);
html += '<div class="cardImage" style="background-color:' + background + ';"></div>';
imgUrl = 'css/images/logindefault.png';
html += '<div class="cardImage" style="background-image:url(\'' + imgUrl + '\');background-color:' + background + ';"></div>';
}
html += '</a>';