Think everything is ready now?

This commit is contained in:
Kasper Rynning-Tønnesen
2015-04-15 21:13:16 +02:00
parent 7f8841ce4a
commit ed925b2601
4 changed files with 9 additions and 4 deletions

View File

@@ -20,6 +20,7 @@ socket.on("pw", function(msg)
for (var i = 0; i < names.length; i++) {
$("input[name="+names[i]+"]").attr("disabled", false);
}
$(".card-action").removeClass("hide");
});
socket.on(chan.toLowerCase()+",conf", function(msg)

View File

@@ -74,6 +74,8 @@ function populate_list(msg, conf_only)
song.find(".votebg").attr("onclick", "vote('"+video_id+"','pos')");
song.find(".list-image").attr("style",video_thumb);
song.attr("id",video_id);
song.find("#del").attr("onclick", "vote('"+video_id+"', 'del')");
if(!w_p) $(".card-action").removeClass("hide");
}
});