just_another_tree/js/data/tree.js

27 lines
397 B
JavaScript
Raw Permalink Normal View History

2024-03-03 11:53:50 +00:00
var layoutInfo = {
startTab: "none",
startNavTab: "tree-tab",
showTree: true,
treeLayout: ""
}
// A "ghost" layer which offsets other layers in the tree
addNode("blank", {
layerShown: "ghost",
},
)
addLayer("tree-tab", {
2024-03-27 19:28:39 +00:00
tabFormat: [
2024-04-09 16:19:14 +01:00
["tree", [["p", "sp", "f"]]],
"blank",
["tree", [["i"]]]
2024-03-27 19:28:39 +00:00
],
2024-03-03 11:53:50 +00:00
previousTab: "",
leftTab: true,
})