Nothing
#' Run shinyjs examples
#'
#' Launch a \code{shinyjs} example Shiny app that shows how to
#' easily use \code{shinyjs} in an app.\cr\cr
#' Run without any arguments to see a list of available example apps.
#' The "demo" example is also
#' \href{https://daattali.com/shiny/shinyjs-demo/}{available online}
#' to experiment with.
#'
#' @param example The app to launch
#' @examples
#' ## Only run this example in interactive R sessions
#' if (interactive()) {
#' # List all available example apps
#' runExample()
#'
#' runExample("sandbox")
#' runExample("demo")
#' }
#' @export
runExample <- function(example) {
validExamples <-
paste0(
'Valid examples are: "',
paste(list.files(system.file("examples", package = "shinyjs")),
collapse = '", "'),
'"')
if (missing(example) || !nzchar(example)) {
message(
'Please run `runExample()` with a valid example app as an argument.\n',
validExamples)
return(invisible(NULL))
}
appDir <- system.file("examples", example,
package = "shinyjs")
if (appDir == "") {
errMsg(sprintf("could not find example app `%s`\n%s",
example, validExamples))
}
shiny::runApp(appDir, display.mode = "normal")
}
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.