Minor fix

This commit is contained in:
calzoneman 2013-06-25 10:38:19 -04:00
parent 08bc926df4
commit 81d85311e7
1 changed files with 9 additions and 6 deletions

View File

@ -300,6 +300,7 @@ function addQueueButtons(li) {
menu.find(".qbtn-delete").addClass("btn-danger");
}
else if(menu.find(".btn").length != 0) {
li.unbind("contextmenu");
li.contextmenu(function(ev) {
ev.preventDefault();
if(menu.css("display") == "none")
@ -322,12 +323,14 @@ function rebuildPlaylist() {
var i = 0;
qli.each(function() {
var li = $(this);
setTimeout(function() {
addQueueButtons(li);
if(i == qli.length - 1) {
REBUILDING = false;
}
}, 10*i);
(function(i) {
setTimeout(function() {
addQueueButtons(li);
if(i == qli.length - 1) {
REBUILDING = false;
}
}, 10*i);
})(i);
i++;
});
}