Remove the remaining default interface references to the old image cache

This commit is contained in:
Patrick Speiser
2012-10-04 01:34:12 +02:00
parent f16a6acfdb
commit 951dfafebf
5 changed files with 1 additions and 69 deletions

View File

@@ -161,28 +161,6 @@
<script src="js/libs/jquery.dataTables.min.js"></script>
<script>
function getArtistArt() {
var id = "${artist['ArtistID']}";
var name = "${artist['ArtistName']}";
var image = $("div#artistImg img#artistImage");
if ( !image.hasClass('done') ) {
image.addClass('done');
getArtwork(image,id,name,'artist');
}
}
function getAlbumArt() {
$("table#album_table tr td#albumart").each(function(){
var id = $(this).children('img').attr('id');
var image = $(this).children('img');
if ( !image.hasClass('done') ) {
image.addClass('done');
getThumb(image,id,'album');
}
});
}
function getArtistBio() {
var id = "${artist['ArtistID']}";
var elem = $("#artistBio");