update now playing bar
This commit is contained in:
@@ -109,6 +109,14 @@
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.nowPlayingBar .nowPlayingImage {
|
||||
height: 80px;
|
||||
width: 80px;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.nowPlayingBarText {
|
||||
display: inline-block;
|
||||
font-weight: normal;
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
function bindEvents(elem) {
|
||||
|
||||
currentTimeElement = $('.nowPlayingBarCurrentTime', elem);
|
||||
nowPlayingImageElement = $('.nowPlayingImage', elem);
|
||||
nowPlayingImageElement = elem.querySelector('.nowPlayingImage');
|
||||
nowPlayingTextElement = $('.nowPlayingBarText', elem);
|
||||
nowPlayingUserData = $('.nowPlayingBarUserDataButtons', elem);
|
||||
|
||||
@@ -522,9 +522,7 @@
|
||||
|
||||
currentImgUrl = url;
|
||||
|
||||
var imgHtml = '<img src="' + url + '" />';
|
||||
|
||||
nowPlayingImageElement.html(imgHtml);
|
||||
ImageLoader.lazyImage(nowPlayingImageElement, url);
|
||||
|
||||
if (nowPlayingItem.Id) {
|
||||
ApiClient.getItem(Dashboard.getCurrentUserId(), nowPlayingItem.Id).then(function (item) {
|
||||
|
||||
Reference in New Issue
Block a user