Nothing
#
# This is a Shiny web application.
#
library("shiny")
library("shinyDTC")
ui <- fluidPage(
titlePanel("Dynamic timer control"),
sidebarLayout(
sidebarPanel(
timerInput("test", width="200px")
),
mainPanel(
verbatimTextOutput("result")
)
)
)
server <- function(input, output, session) {
tr <- timer("test", input, session)
output$result <- renderText({
t <- tr()
paste("t is:", t)
})
}
# Run the application
shinyApp(ui = ui, server = server)
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.