Nothing
shinyServer(
function(input, output){
output[["jstree"]] <-
renderJstree(
jstree(
nodes, search = TRUE, checkboxes = TRUE,
selectLeavesOnly = input[["leavesOnly"]]
)
)
output[["treeSelected_json"]] <- renderPrint({
toJSON(input[["jstree_selected"]], pretty = TRUE, auto_unbox = TRUE)
})
output[["treeSelected_R"]] <- renderPrint({
input[["jstree_selected"]]
})
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.