Nothing
#' Refresh the page
#'
#' @examples
#' if (interactive()) {
#' library(shiny)
#' ui <- fluidPage(
#' useShinyjs(),
#' textInput("text", "Text", "text"),
#' actionButton("refresh", "Refresh")
#' )
#'
#' server <- function(input, output, session) {
#' observeEvent(input$refresh, {
#' refresh()
#' })
#' }
#'
#' shinyApp(ui, server)
#' }
#'
#' @export
refresh <- function() {
fxn <- "refresh"
params <- list()
jsFuncHelper(fxn, params)
}
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.