mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Ensure library list has an item selected when opened
This commit is contained in:
parent
ed033565a4
commit
d360f30af6
@ -676,7 +676,8 @@ RED.clipboard = (function() {
|
|||||||
done(children);
|
done(children);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}]);
|
}], true);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function hideDropTarget() {
|
function hideDropTarget() {
|
||||||
|
@ -384,7 +384,11 @@
|
|||||||
})
|
})
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
if (s.length) {
|
||||||
return s.parent().data('data');
|
return s.parent().data('data');
|
||||||
|
} else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -431,11 +431,13 @@ RED.library = (function() {
|
|||||||
focus: function() {
|
focus: function() {
|
||||||
dirList.focus();
|
dirList.focus();
|
||||||
},
|
},
|
||||||
data: function(content) {
|
data: function(content,selectFirst) {
|
||||||
dirList.treeList('data',content);
|
dirList.treeList('data',content);
|
||||||
// setTimeout(function() {
|
if (selectFirst) {
|
||||||
// dirList.treeList('select',content[0]);
|
setTimeout(function() {
|
||||||
// },100);
|
dirList.treeList('select',content[0]);
|
||||||
|
},100);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user