Rollback last commit
This commit is contained in:
parent
64167ae208
commit
67ddf0f11a
@ -22,7 +22,7 @@
|
|||||||
<div class="thumbnail shadow-1">
|
<div class="thumbnail shadow-1">
|
||||||
<img id="album-artwork" class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
|
<img id="album-artwork" class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<h3 id="album-title">Now playing: <span>{{ albums[0].title }}</span></h3>
|
<h3 id="album-title">{{ albums[0].title }}</h3>
|
||||||
<h5 id="album-release">Released on <span>{{ albums[0].releaseDate }}</span></h5>
|
<h5 id="album-release">Released on <span>{{ albums[0].releaseDate }}</span></h5>
|
||||||
{% if albums[0].description %}
|
{% if albums[0].description %}
|
||||||
<hr />
|
<hr />
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<div class="thumbnail shadow-1">
|
<div class="thumbnail shadow-1">
|
||||||
<img id="album-artwork" class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
|
<img id="album-artwork" class="image-responsive album-art" src="{{ albums[0].album_art }}" alt="{{ albums[0].title }}">
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<h3 id="album-title">Now playing: <span>{{ albums[0].title }}</span></h3>
|
<h3 id="album-title">{{ albums[0].title }}</h3>
|
||||||
<h5 id="album-release">Released on <span>{{ albums[0].releaseDate }}</span></h5>
|
<h5 id="album-release">Released on <span>{{ albums[0].releaseDate }}</span></h5>
|
||||||
{% if albums[0].description %}
|
{% if albums[0].description %}
|
||||||
<hr />
|
<hr />
|
||||||
|
@ -56,9 +56,6 @@
|
|||||||
#track-title
|
#track-title
|
||||||
+padding(null 10px null 10px)
|
+padding(null 10px null 10px)
|
||||||
|
|
||||||
span
|
|
||||||
text-decoration: underline
|
|
||||||
|
|
||||||
.album-art
|
.album-art
|
||||||
width: 100%
|
width: 100%
|
||||||
|
|
||||||
|
@ -676,8 +676,6 @@ body {
|
|||||||
#track-title {
|
#track-title {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
padding-left: 10px; }
|
padding-left: 10px; }
|
||||||
#track-title span {
|
|
||||||
text-decoration: underline; }
|
|
||||||
|
|
||||||
.album-art {
|
.album-art {
|
||||||
width: 100%; }
|
width: 100%; }
|
||||||
|
@ -50,7 +50,7 @@ function getAlbumInfo(albumElem) {
|
|||||||
// change album artwork
|
// change album artwork
|
||||||
$('#album-artwork').attr('src', json.album_art);
|
$('#album-artwork').attr('src', json.album_art);
|
||||||
// change album title
|
// change album title
|
||||||
$('#album-title span').text(json.title);
|
$('#album-title').text(json.title);
|
||||||
// change album release date
|
// change album release date
|
||||||
$('#album-release span').text(formatReleaseDate(json.release_date));
|
$('#album-release span').text(formatReleaseDate(json.release_date));
|
||||||
// change album description
|
// change album description
|
||||||
|
Loading…
Reference in New Issue
Block a user