Empty commit

This commit is contained in:
Git 2012-12-08 08:00:16 +00:00
parent 12e94c7346
commit 894fdf2d12

View File

@ -92,7 +92,8 @@ function show_spectrals (TorrentID){
$('#spectrals_' + TorrentID).toggle();
ajax.get('http://archive.org/~abuie/spectral.php?q=' + TorrentID,function(response){
var json = JSON.parse(response);
var html = "";
html = "<br /> <strong>Loading...</strong>"
$('#spectrals_' + TorrentID).show().raw().innerHTML=html;
if(json['status']['state'] == 'success') {
for (var i = 0; i < json['count']; i++) {
html += "<img src='" + json['files'][i] + "' alt='" + json['files'][i] + "' style='max-width:440px;' onclick='lightbox.init(\""+json['files'][i] + "\", 440);'></a>";