Reduce freezes on large playlists
This commit is contained in:
parent
5389d2827c
commit
7e356f38a8
|
@ -40,6 +40,7 @@ if($("#ytapiplayer").length > 0) {
|
|||
var VHEIGHT = ""+parseInt(parseInt(VWIDTH) * 9 / 16);
|
||||
}
|
||||
var POSITION = -1;
|
||||
var REBUILDING = false;
|
||||
var socket = {
|
||||
emit: function() {
|
||||
console.log("socket not initialized");
|
||||
|
|
|
@ -291,9 +291,23 @@ function addQueueButtons(li) {
|
|||
}
|
||||
|
||||
function rebuildPlaylist() {
|
||||
$("#queue li").each(function() {
|
||||
$(this).find(".btn-group").remove();
|
||||
addQueueButtons($(this));
|
||||
if(REBUILDING)
|
||||
return;
|
||||
|
||||
REBUILDING = true;
|
||||
var i = 0;
|
||||
var qli = $("#queue li");
|
||||
qli.each(function() {
|
||||
var li = $(this);
|
||||
setTimeout(function() {
|
||||
addQueueButtons(li);
|
||||
}, 10*i);
|
||||
if(i == qli.length - 1) {
|
||||
setTimeout(function() {
|
||||
REBUILDING = false;
|
||||
}, 10*i);
|
||||
}
|
||||
i++;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue