Fixed some html decoding errors and added animation to admin panel, fixes #34

This commit is contained in:
Nicolas A. Tonne
2014-10-24 15:41:14 +02:00
parent 21d7684346
commit 889c09c389
4 changed files with 7 additions and 8 deletions

View File

@@ -34,7 +34,7 @@ function updateList()
$.each(list["songs"], function(j, listeID){
var video_title=listeID["title"].replace(/\\\'/g, "'").replace(/\\\"/g,"'");;
var video_title=listeID["title"].replace(/\\\'/g, "'").replace(/"/g,"'").replace(/&/g,"&");
var video_id = listeID["id"];
var video_thumb = "http://i.ytimg.com/vi/"+video_id+"/default.jpg";
var odd = ""; if(j%2==0)odd=" oddlist";