Album page now uses the new cached interface to retrieve the album image.

This commit is contained in:
Patrick Speiser
2012-10-03 04:00:30 +02:00
parent f6c6d22993
commit f16a6acfdb

View File

@@ -51,7 +51,7 @@
<div class="table_wrapper">
<div id="albumheader" class="clearfix">
<div id="albumImg">
<img height="200" alt="" class="albumArt">
<img height="200" alt="" class="albumArt" src="/artwork/album/${album['AlbumID']}">
</div>
<h1><a href="http://musicbrainz.org/release-group/${album['AlbumID']}">${album['AlbumTitle']}</a></h1>
@@ -192,7 +192,7 @@
$(document).ready(function() {
getAlbumInfo();
getAlbumArt();
//getAlbumArt();
initThisPage();
});