Remove inaccurate artist record link

closes #1223
This commit is contained in:
Toks
2013-08-08 14:11:19 -04:00
parent 28dd8015fa
commit 3323f4e251

View File

@@ -61,11 +61,7 @@
var new_artist_link = '<a target="_blank" href="/artists/new?name=' + data.unique_id + '&other_names=' + data.artist_name + '&urls=' + encodeURIComponent(data.profile_url) + '+' + encodeURIComponent(data.image_url) + '">new</a>';
if (data.danbooru_id) {
$("#source-record").html('<a href="/artists/' + data.danbooru_id + '">' + data.danbooru_name + '</a> ' + new_artist_link);
} else {
$("#source-record").html(new_artist_link);
}
$("#source-record").html(new_artist_link);
$("#source-info p").hide();
$("#source-info ul").show();