Nothing
handlersObject <- function(ns) {
paste0("window.jsmodule['@/shiny.blueprint'].panelStackHandlers['", ns, "']")
}
#' @rdname PanelStack
#' @param panelId Id of the panel to be closed
#' @export
openPanel <- function(panelId, ns = "ps") {
JS(paste0(
"() => ", handlersObject(ns), ".openPanel('", panelId, "')"
))
}
#' @rdname PanelStack
#' @export
closePanel <- function(ns = "ps") {
JS("() => ", handlersObject(ns), ".closePanel()")
}
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.