SAAS-1156: Podcast episode playback and download from Radio Page

Fix metadata html escaping
Tried some tinkering with codecs
This commit is contained in:
drigato 2015-10-29 14:45:19 -04:00
parent 706db9bc25
commit f3f5b4f539
3 changed files with 16 additions and 9 deletions

View file

@ -186,8 +186,8 @@
};
MusesPlayer.prototype.setCodec = function(codec) {
console.log(codec);
//this.flashDetect ? MRP.setCodec(codec) : musesHTMLSetCodec(codec);
//TODO: get rid of this? Doesn't seem to make a difference
this.flashDetect ? console.log("blah") : musesHTMLSetCodec(codec);
musesPlayer.settings.codec = codec;
}
@ -367,7 +367,6 @@
}
function attachFileMetadataToPlayer(artist, title) {
//TODO escape strings
$("p.now_playing").html(artist+"<span>"+title+"</span>");
}