Hide palette until nodes loaded

This commit is contained in:
Nick O'Leary
2014-03-17 16:26:15 +00:00
parent f666b0e6f9
commit 4dce130acb
3 changed files with 9 additions and 0 deletions

View File

@@ -142,6 +142,9 @@ var RED = function() {
function loadNodes() {
$.get('nodes', function(data) {
$("body").append(data);
$(".palette-spinner").hide();
$(".palette-scroll").show();
$("#palette-search").show();
loadFlows();
});
}