more button?

This commit is contained in:
Kasper Rynning-Tønnesen
2015-11-26 11:52:22 +01:00
parent 8c7ced176b
commit cdb1ce9ed7
3 changed files with 15 additions and 4 deletions

View File

@@ -114,13 +114,13 @@ var Nochan = {
Nochan.blob_list.push(data);
//data will contain the vote count echoed by the controller i.e.
$("#mega-background").css("opacity", 0);
$(".room-namer").css("opacity", 0);
//$(".room-namer").css("opacity", 0);
setTimeout(function(){
$("#mega-background").css("background", "url(data:image/png;base64,"+data+")");
$("#mega-background").css("background-size" , "200%");
$("#mega-background").css("opacity", 1);
$("#search").attr("placeholder", list[i][3]);
$(".room-namer").css("opacity", 1);
//$(".room-namer").css("opacity", 1);
},500);
//then append the result where ever you want like
//$("span#votes_number").html(data); //data will be containing the vote count which you have echoed from the controller