Nothing
library(shiny)
library(shinyTree)
#' @author Sandro Raabe \email{sa.ra.online@posteo.de}
shinyUI(
pageWithSidebar(
# Application title
headerPanel("shinyTree Directory structure"),
sidebarPanel(
helpText(HTML("Recursively change icons of tree nodes."))
),
mainPanel(
# Show a simple table.
shinyTree("tree",types=
"{
'directory' : { 'icon' : 'glyphicon glyphicon-folder-open' },
'file' : { 'icon' : 'glyphicon glyphicon-file', 'valid_children' : [] }
}"
)
)
))
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.