var t = '';
var x = '';
var mp3_hash = localStorage.getItem('manga_key');function all_mp3()
{
t = ''
return t;
}
function no_auth()
{
t = '";
return t;
}
x = document.getElementById('audio_blk');
console.log("MP3 HASH: "+mp3_hash);
//if (typeof(mp3_hash) != 'undefined' && mp3_hash != null)
if(mp3_hash == null)
{
audio_data = no_auth();
//console.log(1);
document.getElementById('txt_comments').className = 'd-none';
}
else
{
document.getElementById('tg_insert').innerHTML = '';
document.getElementById('txt_comments').className = '';
audio_data = all_mp3();
//console.log(2);
}
//console.log(audio_data);
x.innerHTML = audio_data;