display notes only after all are generated
Greatly improves load time of pages with a lot of notes (less DOM changes).
This commit is contained in:
@@ -441,7 +441,8 @@ Danbooru.Note = {
|
|||||||
left: x,
|
left: x,
|
||||||
top: y,
|
top: y,
|
||||||
width: w,
|
width: w,
|
||||||
height: h
|
height: h,
|
||||||
|
display: 'none'
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#note-container").append($note_box);
|
$("#note-container").append($note_box);
|
||||||
@@ -488,6 +489,12 @@ Danbooru.Note = {
|
|||||||
$article.html()
|
$article.html()
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#note-container').css('display','none');
|
||||||
|
$('.note-box').each(function(i, v) {
|
||||||
|
$(v).css('display','block')
|
||||||
|
});
|
||||||
|
$('#note-container').css('display','block');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user