Nothing
#' Server function for workflow module in Shiny application
#' @param id Shiny module identifier
WorkflowServerLogic <- function(id) {
shiny::moduleServer(id, function(input, output, session) {
shiny::observeEvent(input$helpWorkflow, {
rintrojs::introjs(
session,
options = list(
"showBullets" = TRUE,
"showProgress" = TRUE,
"showStepNumbers" = FALSE,
"nextLabel" = "Next",
"prevLabel" = "Prev",
"skipLabel" = "Skip"
)
)
})
})
}
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.