mirror of
https://github.com/nextcloud/server.git
synced 2026-04-05 00:56:16 -04:00
correct presentation of HTML encoded characters
This commit is contained in:
parent
cc3835d657
commit
f8ec280b6e
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ var PlayList={
|
|||
PlayList.init(items[index].type,null); // init calls load that calls play
|
||||
}else{
|
||||
PlayList.player.jPlayer("setMedia", items[PlayList.current]);
|
||||
$(".jp-current-song").text(items[PlayList.current].name);
|
||||
$(".jp-current-song").html(items[PlayList.current].name);
|
||||
items[index].playcount++;
|
||||
PlayList.player.jPlayer("play",time);
|
||||
if(index>0){
|
||||
|
|
|
|||
Loading…
Reference in a new issue