in src/main/resources/SLING-INF/libs/sling/resource-editor/static/js/tree/TreeController.js [57:63]
$(thatTreeController.settings.treeAndPropsSelector).on("dblclick", thatTreeController.settings.treeRootElementSelector,function(e) {
var target = $(e.target);
if (target.hasClass("jstree-anchor") || target.hasClass("node-type")){
var id = target.parents("li:first").attr("id");
thatTreeController.openRenameNodeDialog(id);
}
});